diff options
Diffstat (limited to 'crypt')
-rw-r--r-- | crypt/Makefile | 2 | ||||
-rw-r--r-- | crypt/badsalttest.c | 2 | ||||
-rw-r--r-- | crypt/crypt-entry.c | 2 | ||||
-rw-r--r-- | crypt/crypt-private.h | 2 | ||||
-rw-r--r-- | crypt/crypt.c | 2 | ||||
-rw-r--r-- | crypt/crypt.h | 3 | ||||
-rw-r--r-- | crypt/crypt_util.c | 3 | ||||
-rw-r--r-- | crypt/md5-crypt.c | 3 | ||||
-rw-r--r-- | crypt/md5.c | 2 | ||||
-rw-r--r-- | crypt/md5.h | 3 | ||||
-rw-r--r-- | crypt/md5test-giant.c | 2 | ||||
-rw-r--r-- | crypt/sha256-crypt.c | 2 | ||||
-rw-r--r-- | crypt/sha256.c | 2 | ||||
-rw-r--r-- | crypt/sha256.h | 2 | ||||
-rw-r--r-- | crypt/sha512-crypt.c | 2 | ||||
-rw-r--r-- | crypt/sha512.c | 2 | ||||
-rw-r--r-- | crypt/sha512.h | 2 | ||||
-rw-r--r-- | crypt/ufc-crypt.h | 2 | ||||
-rw-r--r-- | crypt/ufc.c | 2 |
19 files changed, 19 insertions, 23 deletions
diff --git a/crypt/Makefile b/crypt/Makefile index 54f0021..208579a 100644 --- a/crypt/Makefile +++ b/crypt/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1996,2000,2001,2007,2009,2012 Free Software Foundation, Inc. +# Copyright (C) 1996-2013 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/crypt/badsalttest.c b/crypt/badsalttest.c index e0e207b..f050c32 100644 --- a/crypt/badsalttest.c +++ b/crypt/badsalttest.c @@ -1,5 +1,5 @@ /* Test program for bad DES salt detection in crypt. - Copyright (C) 2012 Free Software Foundation, Inc. + Copyright (C) 2012-2013 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/crypt/crypt-entry.c b/crypt/crypt-entry.c index 89c22e6..8e64bd5 100644 --- a/crypt/crypt-entry.c +++ b/crypt/crypt-entry.c @@ -1,7 +1,7 @@ /* * UFC-crypt: ultra fast crypt(3) implementation * - * Copyright (C) 1991-1993,1996-1997,2007,2012 Free Software Foundation, Inc. + * Copyright (C) 1991-2013 Free Software Foundation, Inc. * * The GNU C Library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/crypt/crypt-private.h b/crypt/crypt-private.h index 54418fc..bde5cbf 100644 --- a/crypt/crypt-private.h +++ b/crypt/crypt-private.h @@ -1,7 +1,7 @@ /* * UFC-crypt: ultra fast crypt(3) implementation * - * Copyright (C) 1991-1993, 1996-1998, 2012 Free Software Foundation, Inc. + * Copyright (C) 1991-2013 Free Software Foundation, Inc. * * The GNU C Library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/crypt/crypt.c b/crypt/crypt.c index 3360639..b90a46d 100644 --- a/crypt/crypt.c +++ b/crypt/crypt.c @@ -1,7 +1,7 @@ /* * UFC-crypt: ultra fast crypt(3) implementation * - * Copyright (C) 1991, 1992, 1993, 1996 Free Software Foundation, Inc. + * Copyright (C) 1991-2013 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/crypt/crypt.h b/crypt/crypt.h index 0c30d93..985720b 100644 --- a/crypt/crypt.h +++ b/crypt/crypt.h @@ -1,8 +1,7 @@ /* * UFC-crypt: ultra fast crypt(3) implementation * - * Copyright (C) 1991-1993,1996-1998,2000,2004,2012 - * Free Software Foundation, Inc. + * Copyright (C) 1991-2013 Free Software Foundation, Inc. * * The GNU C Library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/crypt/crypt_util.c b/crypt/crypt_util.c index e08dd8f..99ad321 100644 --- a/crypt/crypt_util.c +++ b/crypt/crypt_util.c @@ -1,8 +1,7 @@ /* * UFC-crypt: ultra fast crypt(3) implementation * - * Copyright (C) 1991-1993,1996-1998,2000,2010,2011,2012 - * Free Software Foundation, Inc. + * Copyright (C) 1991-2013 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/crypt/md5-crypt.c b/crypt/md5-crypt.c index db4ea9c..d2a17ef 100644 --- a/crypt/md5-crypt.c +++ b/crypt/md5-crypt.c @@ -1,7 +1,6 @@ /* One way encryption based on MD5 sum. Compatible with the behavior of MD5 crypt introduced in FreeBSD 2.0. - Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2004, 2009, 2012 - Free Software Foundation, Inc. + Copyright (C) 1996-2013 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. diff --git a/crypt/md5.c b/crypt/md5.c index 16f3cda..17dc856 100644 --- a/crypt/md5.c +++ b/crypt/md5.c @@ -1,6 +1,6 @@ /* Functions to compute MD5 message digest of files or memory blocks. according to the definition of MD5 in RFC 1321 from April 1992. - Copyright (C) 1995-2012 Free Software Foundation, Inc. + Copyright (C) 1995-2013 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/crypt/md5.h b/crypt/md5.h index 84de1db..db01a17 100644 --- a/crypt/md5.h +++ b/crypt/md5.h @@ -1,7 +1,6 @@ /* Declaration of functions and data types used for MD5 sum computing library functions. - Copyright (C) 1995-1997,1999,2000,2001,2004,2005,2011,2012 - Free Software Foundation, Inc. + Copyright (C) 1995-2013 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/crypt/md5test-giant.c b/crypt/md5test-giant.c index 63a9c3a..a31d0e1 100644 --- a/crypt/md5test-giant.c +++ b/crypt/md5test-giant.c @@ -1,5 +1,5 @@ /* Testcase for http://sourceware.org/bugzilla/show_bug.cgi?id=14090. - Copyright (C) 2012 Free Software Foundation, Inc. + Copyright (C) 2012-2013 Free Software Foundation, Inc. This file is part of the GNU C Library. This program is free software; you can redistribute it and/or modify diff --git a/crypt/sha256-crypt.c b/crypt/sha256-crypt.c index 440933a..334f572 100644 --- a/crypt/sha256-crypt.c +++ b/crypt/sha256-crypt.c @@ -1,5 +1,5 @@ /* One way encryption based on SHA256 sum. - Copyright (C) 2007, 2009, 2012 Free Software Foundation, Inc. + Copyright (C) 2007-2013 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2007. diff --git a/crypt/sha256.c b/crypt/sha256.c index aea9465..9aa222b 100644 --- a/crypt/sha256.c +++ b/crypt/sha256.c @@ -1,6 +1,6 @@ /* Functions to compute SHA256 message digest of files or memory blocks. according to the definition of SHA256 in FIPS 180-2. - Copyright (C) 2007, 2011 Free Software Foundation, Inc. + Copyright (C) 2007-2013 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/crypt/sha256.h b/crypt/sha256.h index 0e51a16..6aefd5e 100644 --- a/crypt/sha256.h +++ b/crypt/sha256.h @@ -1,6 +1,6 @@ /* Declaration of functions and data types used for SHA256 sum computing library functions. - Copyright (C) 2007, 2011 Free Software Foundation, Inc. + Copyright (C) 2007-2013 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/crypt/sha512-crypt.c b/crypt/sha512-crypt.c index e5d9cac..6541a9d 100644 --- a/crypt/sha512-crypt.c +++ b/crypt/sha512-crypt.c @@ -1,5 +1,5 @@ /* One way encryption based on SHA512 sum. - Copyright (C) 2007, 2009, 2012 Free Software Foundation, Inc. + Copyright (C) 2007-2013 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2007. diff --git a/crypt/sha512.c b/crypt/sha512.c index c0df12e..db17ff4 100644 --- a/crypt/sha512.c +++ b/crypt/sha512.c @@ -1,6 +1,6 @@ /* Functions to compute SHA512 message digest of files or memory blocks. according to the definition of SHA512 in FIPS 180-2. - Copyright (C) 2007-2012 Free Software Foundation, Inc. + Copyright (C) 2007-2013 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/crypt/sha512.h b/crypt/sha512.h index 157c577..87c331e 100644 --- a/crypt/sha512.h +++ b/crypt/sha512.h @@ -1,6 +1,6 @@ /* Declaration of functions and data types used for SHA512 sum computing library functions. - Copyright (C) 2007, 2011 Free Software Foundation, Inc. + Copyright (C) 2007-2013 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/crypt/ufc-crypt.h b/crypt/ufc-crypt.h index 63fbb76..1ddb1f6 100644 --- a/crypt/ufc-crypt.h +++ b/crypt/ufc-crypt.h @@ -1,5 +1,5 @@ /* Types for UFC-crypt. - Copyright (C) 1998 Free Software Foundation, Inc. + Copyright (C) 1998-2013 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/crypt/ufc.c b/crypt/ufc.c index b00093b..1958156 100644 --- a/crypt/ufc.c +++ b/crypt/ufc.c @@ -1,7 +1,7 @@ /* * UFC-crypt: ultra fast crypt(3) implementation * - * Copyright (C) 1991, 1992, 1993, 1996 Free Software Foundation, Inc. + * Copyright (C) 1991-2013 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public |