X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fdes.c;h=63f9f65dcf13fd343da2a02e8dcbf871ea25d297;hb=bed5facc8ba8813aec741ae883a5021f4bc6339e;hp=42eb649bba6df5ea2dd495b80dc875ed05249650;hpb=3030c5b5e0a5199e16b05927da72c43c42f211c3;p=gnulib.git diff --git a/lib/des.c b/lib/des.c index 42eb649bb..63f9f65dc 100644 --- a/lib/des.c +++ b/lib/des.c @@ -1,6 +1,5 @@ /* des.c --- DES and Triple-DES encryption/decryption Algorithm - * Copyright (C) 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009 - * Free Software Foundation, Inc. + * Copyright (C) 1998-1999, 2001-2007, 2009-2012 Free Software Foundation, Inc. * * This file is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published @@ -13,9 +12,7 @@ * General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this file; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - * 02110-1301, USA. + * along with this file; if not, see . * */ @@ -65,7 +62,7 @@ * // Encrypt the plaintext * des_ecb_encrypt(&context, plaintext, ciphertext); * - * // To recover the orginal plaintext from ciphertext use: + * // To recover the original plaintext from ciphertext use: * des_ecb_decrypt(&context, ciphertext, recoverd); * *