X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fdes.c;h=867954e3247916bef0f7287d81c2dc3deb519f83;hb=c459fa109c50148d5f84c3c57862526ea408f305;hp=f6aa64fb06402315376ef4ee42d102a40c743f5e;hpb=441aa3044f43e5572f58c354f01e6bc070acd5c7;p=gnulib.git diff --git a/lib/des.c b/lib/des.c index f6aa64fb0..867954e32 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 - * Free Software Foundation, Inc. + * Copyright (C) 1998-1999, 2001-2007, 2009-2013 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); * *