summaryrefslogtreecommitdiff
path: root/lib/x509
diff options
context:
space:
mode:
Diffstat (limited to 'lib/x509')
-rw-r--r--lib/x509/Makefile.am2
-rw-r--r--lib/x509/common.c2
-rw-r--r--lib/x509/common.h2
-rw-r--r--lib/x509/crl.c3
-rw-r--r--lib/x509/crl_write.c2
-rw-r--r--lib/x509/crq.c3
-rw-r--r--lib/x509/dn.c4
-rw-r--r--lib/x509/extensions.c2
-rw-r--r--lib/x509/key_decode.c2
-rw-r--r--lib/x509/key_encode.c2
-rw-r--r--lib/x509/mpi.c4
-rw-r--r--lib/x509/output.c2
-rw-r--r--lib/x509/pbkdf2-sha1.c4
-rw-r--r--lib/x509/pkcs12.c2
-rw-r--r--lib/x509/pkcs12_bag.c4
-rw-r--r--lib/x509/pkcs12_encr.c4
-rw-r--r--lib/x509/pkcs7.c4
-rw-r--r--lib/x509/privkey.c3
-rw-r--r--lib/x509/privkey_pkcs8.c4
-rw-r--r--lib/x509/rfc2818_hostname.c2
-rw-r--r--lib/x509/sign.c3
-rw-r--r--lib/x509/verify-high.c2
-rw-r--r--lib/x509/verify-high.h2
-rw-r--r--lib/x509/x509_int.h2
-rw-r--r--lib/x509/x509_write.c3
25 files changed, 32 insertions, 37 deletions
diff --git a/lib/x509/Makefile.am b/lib/x509/Makefile.am
index 68412c79ec..9386a4e630 100644
--- a/lib/x509/Makefile.am
+++ b/lib/x509/Makefile.am
@@ -1,5 +1,5 @@
## Process this file with automake to produce Makefile.in
-# Copyright (C) 2003-2011 Free Software Foundation, Inc.
+# Copyright (C) 2003-2012 Free Software Foundation, Inc.
#
# This file is part of GnuTLS.
#
diff --git a/lib/x509/common.c b/lib/x509/common.c
index 0bed0e76c2..459fe9ef41 100644
--- a/lib/x509/common.c
+++ b/lib/x509/common.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2003-2011 Free Software Foundation, Inc.
+ * Copyright (C) 2003-2012 Free Software Foundation, Inc.
*
* Author: Nikos Mavrogiannopoulos
*
diff --git a/lib/x509/common.h b/lib/x509/common.h
index ec6a6cd431..886f1817d1 100644
--- a/lib/x509/common.h
+++ b/lib/x509/common.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2003-2011 Free Software Foundation, Inc.
+ * Copyright (C) 2003-2012 Free Software Foundation, Inc.
*
* Author: Nikos Mavrogiannopoulos
*
diff --git a/lib/x509/crl.c b/lib/x509/crl.c
index 895addd5cf..916cfb24bb 100644
--- a/lib/x509/crl.c
+++ b/lib/x509/crl.c
@@ -1,6 +1,5 @@
/*
- * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2010, 2011 Free Software
- * Foundation, Inc.
+ * Copyright (C) 2003-2008, 2010-2012 Free Software Foundation, Inc.
*
* Author: Nikos Mavrogiannopoulos
*
diff --git a/lib/x509/crl_write.c b/lib/x509/crl_write.c
index 8fd9f18898..15d7aa06e4 100644
--- a/lib/x509/crl_write.c
+++ b/lib/x509/crl_write.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2003, 2004, 2005, 2008, 2010, 2011 Free Software Foundation,
+ * Copyright (C) 2003-2005, 2008, 2010-2012 Free Software Foundation,
* Inc.
*
* Author: Nikos Mavrogiannopoulos
diff --git a/lib/x509/crq.c b/lib/x509/crq.c
index fa4c25b778..35029e26e5 100644
--- a/lib/x509/crq.c
+++ b/lib/x509/crq.c
@@ -1,6 +1,5 @@
/*
- * Copyright (C) 2003, 2004, 2005, 2008, 2009, 2010, 2011 Free Software
- * Foundation, Inc.
+ * Copyright (C) 2003-2005, 2008-2012 Free Software Foundation, Inc.
*
* Author: Nikos Mavrogiannopoulos
*
diff --git a/lib/x509/dn.c b/lib/x509/dn.c
index bf349c9a43..af70130c93 100644
--- a/lib/x509/dn.c
+++ b/lib/x509/dn.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2003, 2004, 2005, 2007, 2008, 2009, 2010 Free Software
- * Foundation, Inc.
+ * Copyright (C) 2003-2005, 2007-2010, 2012 Free Software Foundation,
+ * Inc.
*
* Author: Nikos Mavrogiannopoulos
*
diff --git a/lib/x509/extensions.c b/lib/x509/extensions.c
index 4e73fd945b..610b61615b 100644
--- a/lib/x509/extensions.c
+++ b/lib/x509/extensions.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2003-2011 Free Software Foundation, Inc.
+ * Copyright (C) 2003-2012 Free Software Foundation, Inc.
*
* Author: Nikos Mavrogiannopoulos
*
diff --git a/lib/x509/key_decode.c b/lib/x509/key_decode.c
index da44020f01..0f8766b6ce 100644
--- a/lib/x509/key_decode.c
+++ b/lib/x509/key_decode.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2011 Free Software Foundation, Inc.
+ * Copyright (C) 2011-2012 Free Software Foundation, Inc.
*
* Author: Nikos Mavrogiannopoulos
*
diff --git a/lib/x509/key_encode.c b/lib/x509/key_encode.c
index 2b6c838d4a..05b097b57e 100644
--- a/lib/x509/key_encode.c
+++ b/lib/x509/key_encode.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2011 Free Software Foundation, Inc.
+ * Copyright (C) 2011-2012 Free Software Foundation, Inc.
*
* Author: Nikos Mavrogiannopoulos
*
diff --git a/lib/x509/mpi.c b/lib/x509/mpi.c
index cf90bf9a91..127b9f1e84 100644
--- a/lib/x509/mpi.c
+++ b/lib/x509/mpi.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2003, 2004, 2005, 2007, 2008, 2009, 2010 Free Software
- * Foundation, Inc.
+ * Copyright (C) 2003-2005, 2007-2010, 2012 Free Software Foundation,
+ * Inc.
*
* Author: Nikos Mavrogiannopoulos
*
diff --git a/lib/x509/output.c b/lib/x509/output.c
index ab056deacb..bacb98455a 100644
--- a/lib/x509/output.c
+++ b/lib/x509/output.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2007-2011 Free Software Foundation, Inc.
+ * Copyright (C) 2007-2012 Free Software Foundation, Inc.
*
* Author: Simon Josefsson
*
diff --git a/lib/x509/pbkdf2-sha1.c b/lib/x509/pbkdf2-sha1.c
index ca9437aa8e..e773bac59e 100644
--- a/lib/x509/pbkdf2-sha1.c
+++ b/lib/x509/pbkdf2-sha1.c
@@ -1,6 +1,6 @@
/* gc-pbkdf2-sha1.c --- Password-Based Key Derivation Function a'la PKCS#5
- Copyright (C) 2002, 2003, 2004, 2005, 2006, 2008, 2010 Free Software
- Foundation, Inc.
+ Copyright (C) 2002-2006, 2008, 2010, 2012 Free Software Foundation,
+ Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
diff --git a/lib/x509/pkcs12.c b/lib/x509/pkcs12.c
index 4d9963ca1c..8db0c0723a 100644
--- a/lib/x509/pkcs12.c
+++ b/lib/x509/pkcs12.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2003, 2004, 2005, 2008, 2010 Free Software Foundation,
+ * Copyright (C) 2003-2005, 2008, 2010, 2012 Free Software Foundation,
* Inc.
*
* Author: Nikos Mavrogiannopoulos
diff --git a/lib/x509/pkcs12_bag.c b/lib/x509/pkcs12_bag.c
index 68256eed12..e7afd8c9cb 100644
--- a/lib/x509/pkcs12_bag.c
+++ b/lib/x509/pkcs12_bag.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2003, 2004, 2005, 2008, 2009, 2010 Free Software
- * Foundation, Inc.
+ * Copyright (C) 2003-2005, 2008-2010, 2012 Free Software Foundation,
+ * Inc.
*
* Author: Nikos Mavrogiannopoulos
*
diff --git a/lib/x509/pkcs12_encr.c b/lib/x509/pkcs12_encr.c
index 258afd9e32..3c9f441b06 100644
--- a/lib/x509/pkcs12_encr.c
+++ b/lib/x509/pkcs12_encr.c
@@ -1,7 +1,7 @@
/* minip12.c - A mini pkcs-12 implementation (modified for gnutls)
*
- * Copyright (C) 2002, 2004, 2005, 2009, 2010 Free Software Foundation,
- * Inc.
+ * Copyright (C) 2002, 2004-2005, 2009-2010, 2012 Free Software
+ * Foundation, Inc.
*
* This file is part of GnuTLS.
*
diff --git a/lib/x509/pkcs7.c b/lib/x509/pkcs7.c
index 1fc60513c4..4c016d2e11 100644
--- a/lib/x509/pkcs7.c
+++ b/lib/x509/pkcs7.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2003, 2004, 2005, 2008, 2009, 2010 Free Software
- * Foundation, Inc.
+ * Copyright (C) 2003-2005, 2008-2010, 2012 Free Software Foundation,
+ * Inc.
*
* Author: Nikos Mavrogiannopoulos
*
diff --git a/lib/x509/privkey.c b/lib/x509/privkey.c
index d320aa8b8b..420ddfce14 100644
--- a/lib/x509/privkey.c
+++ b/lib/x509/privkey.c
@@ -1,6 +1,5 @@
/*
- * Copyright (C) 2003, 2004, 2005, 2007, 2008, 2009, 2010, 2011 Free Software
- * Foundation, Inc.
+ * Copyright (C) 2003-2005, 2007-2012 Free Software Foundation, Inc.
*
* Author: Nikos Mavrogiannopoulos
*
diff --git a/lib/x509/privkey_pkcs8.c b/lib/x509/privkey_pkcs8.c
index 065e552d29..272ffe64fe 100644
--- a/lib/x509/privkey_pkcs8.c
+++ b/lib/x509/privkey_pkcs8.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2003, 2004, 2005, 2007, 2008, 2009, 2010 Free Software
- * Foundation, Inc.
+ * Copyright (C) 2003-2005, 2007-2010, 2012 Free Software Foundation,
+ * Inc.
*
* Author: Nikos Mavrogiannopoulos
*
diff --git a/lib/x509/rfc2818_hostname.c b/lib/x509/rfc2818_hostname.c
index dbe25a6585..d55f26ab46 100644
--- a/lib/x509/rfc2818_hostname.c
+++ b/lib/x509/rfc2818_hostname.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2003, 2004, 2005, 2007, 2008, 2010 Free Software
+ * Copyright (C) 2003-2005, 2007-2008, 2010, 2012 Free Software
* Foundation, Inc.
* Copyright (C) 2002 Andrew McDonald
*
diff --git a/lib/x509/sign.c b/lib/x509/sign.c
index 1741b0700d..afb4e65e1c 100644
--- a/lib/x509/sign.c
+++ b/lib/x509/sign.c
@@ -1,6 +1,5 @@
/*
- * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2010 Free Software
- * Foundation, Inc.
+ * Copyright (C) 2003-2008, 2010, 2012 Free Software Foundation, Inc.
*
* Author: Nikos Mavrogiannopoulos
*
diff --git a/lib/x509/verify-high.c b/lib/x509/verify-high.c
index 31eb1c07fd..ce6c00a76b 100644
--- a/lib/x509/verify-high.c
+++ b/lib/x509/verify-high.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2011 Free Software Foundation, Inc.
+ * Copyright (C) 2011-2012 Free Software Foundation, Inc.
*
* Author: Nikos Mavrogiannopoulos
*
diff --git a/lib/x509/verify-high.h b/lib/x509/verify-high.h
index 5272806802..ec45fc78f8 100644
--- a/lib/x509/verify-high.h
+++ b/lib/x509/verify-high.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2011 Free Software Foundation, Inc.
+ * Copyright (C) 2011-2012 Free Software Foundation, Inc.
*
* Author: Nikos Mavrogiannopoulos
*
diff --git a/lib/x509/x509_int.h b/lib/x509/x509_int.h
index c0dbf7e2d4..55fdaac72d 100644
--- a/lib/x509/x509_int.h
+++ b/lib/x509/x509_int.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2003-2011 Free Software Foundation, Inc.
+ * Copyright (C) 2003-2012 Free Software Foundation, Inc.
*
* Author: Nikos Mavrogiannopoulos
*
diff --git a/lib/x509/x509_write.c b/lib/x509/x509_write.c
index 147f0659d7..507879bd3b 100644
--- a/lib/x509/x509_write.c
+++ b/lib/x509/x509_write.c
@@ -1,6 +1,5 @@
/*
- * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free
- * Software Foundation, Inc.
+ * Copyright (C) 2003-2010, 2012 Free Software Foundation, Inc.
*
* Author: Nikos Mavrogiannopoulos
*