From: Richard Kettlewell Date: Wed, 15 Jun 2011 21:50:13 +0000 (+0100) Subject: Copyright notices X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=9b65d43d40c9f3c85634b22c6626199736cd5afb;p=vbig.git Copyright notices --- diff --git a/Arcfour.cc b/Arcfour.cc index bee5cf1..49c8590 100644 --- a/Arcfour.cc +++ b/Arcfour.cc @@ -21,15 +21,6 @@ #include #include "Arcfour.h" -/** @brief Encrypt using Arcfour stream cipher - * @param context Context structure - * @param inbuf Input buffer - * @param outbuf Output buffer - * @param length Number of bytes in @p inbuf - * - * Copies from @p inbuf to @p outbuf, encrypting (or decrypting) using - * the stream controlled by @p context. - */ void Arcfour::stream(char *outbuf, size_t length) { uint8_t i = idx_i; uint8_t j = idx_j; diff --git a/Arcfour.h b/Arcfour.h index 3c575b5..7d7abf0 100644 --- a/Arcfour.h +++ b/Arcfour.h @@ -29,7 +29,6 @@ #define ARCFOUR_SBOX_SIZE 256 -/** @brief Context structture for Arcfour stream cipher */ class Arcfour { char sbox[ARCFOUR_SBOX_SIZE]; uint8_t idx_i, idx_j; diff --git a/README b/README index bda324b..da12f5c 100644 --- a/README +++ b/README @@ -15,4 +15,18 @@ If building from git, do './autogen.sh' first. Author ====== -Richard Kettlewell +Copyright (C) 2011 Richard Kettlewell +Copyright (C) 2000, 2001, 2002, 2003, 2005, 2006 Free Software Foundation, Inc. + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . diff --git a/vbig.1 b/vbig.1 index 1c8216f..ccd98f2 100644 --- a/vbig.1 +++ b/vbig.1 @@ -1,3 +1,20 @@ +\" +\" This file is part of vbig. +\" Copyright (C) 2011 Richard Kettlewell +\" +\" This program is free software: you can redistribute it and/or modify +\" it under the terms of the GNU General Public License as published by +\" the Free Software Foundation, either version 3 of the License, or +\" (at your option) any later version. +\" +\" This program is distributed in the hope that it will be useful, +\" but WITHOUT ANY WARRANTY; without even the implied warranty of +\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +\" GNU General Public License for more details. +\" +\" You should have received a copy of the GNU General Public License +\" along with this program. If not, see . +\" .TH vbig 1 .SH NAME vbig \- create or verify a large but pseudo-random file diff --git a/vbig.cc b/vbig.cc index 54f3ea1..0051394 100644 --- a/vbig.cc +++ b/vbig.cc @@ -1,3 +1,20 @@ +/* + * This file is part of vbig. + * Copyright (C) 2011 Richard Kettlewell + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ #include #include #include