aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.txt4
-rw-r--r--LICENSE.txt2
-rw-r--r--README.md2
-rw-r--r--pyasn1_modules/pem.py2
-rw-r--r--pyasn1_modules/rfc1155.py2
-rw-r--r--pyasn1_modules/rfc1157.py2
-rw-r--r--pyasn1_modules/rfc1901.py2
-rw-r--r--pyasn1_modules/rfc1902.py2
-rw-r--r--pyasn1_modules/rfc1905.py2
-rw-r--r--pyasn1_modules/rfc2251.py2
-rw-r--r--pyasn1_modules/rfc2314.py2
-rw-r--r--pyasn1_modules/rfc2315.py2
-rw-r--r--pyasn1_modules/rfc2437.py2
-rw-r--r--pyasn1_modules/rfc2459.py2
-rw-r--r--pyasn1_modules/rfc2511.py2
-rw-r--r--pyasn1_modules/rfc2560.py2
-rw-r--r--pyasn1_modules/rfc2986.py2
-rw-r--r--pyasn1_modules/rfc3280.py2
-rw-r--r--pyasn1_modules/rfc3281.py2
-rw-r--r--pyasn1_modules/rfc3412.py2
-rw-r--r--pyasn1_modules/rfc3414.py2
-rw-r--r--pyasn1_modules/rfc3447.py2
-rw-r--r--pyasn1_modules/rfc3852.py2
-rw-r--r--pyasn1_modules/rfc4210.py2
-rw-r--r--pyasn1_modules/rfc4211.py2
-rw-r--r--pyasn1_modules/rfc5208.py2
-rw-r--r--pyasn1_modules/rfc5280.py2
-rw-r--r--pyasn1_modules/rfc5652.py2
-rw-r--r--pyasn1_modules/rfc6402.py2
-rw-r--r--setup.py2
-rw-r--r--tests/__main__.py2
-rw-r--r--tests/test_rfc2314.py2
-rw-r--r--tests/test_rfc2315.py2
-rw-r--r--tests/test_rfc2437.py2
-rw-r--r--tests/test_rfc2459.py2
-rw-r--r--tests/test_rfc2511.py2
-rw-r--r--tests/test_rfc2560.py2
-rw-r--r--tests/test_rfc2986.py2
-rw-r--r--tests/test_rfc4210.py2
-rw-r--r--tests/test_rfc5208.py2
-rw-r--r--tests/test_rfc5280.py2
-rw-r--r--tests/test_rfc5652.py2
-rwxr-xr-xtools/cmpdump.py2
-rwxr-xr-xtools/crldump.py2
-rwxr-xr-xtools/crmfdump.py2
-rwxr-xr-xtools/ocspclient.py2
-rwxr-xr-xtools/ocspreqdump.py2
-rwxr-xr-xtools/ocsprspdump.py2
-rwxr-xr-xtools/pkcs10dump.py2
-rwxr-xr-xtools/pkcs1dump.py2
-rwxr-xr-xtools/pkcs7dump.py2
-rwxr-xr-xtools/pkcs8dump.py2
-rwxr-xr-xtools/snmpget.py2
-rwxr-xr-xtools/x509dump-rfc5280.py2
-rwxr-xr-xtools/x509dump.py2
55 files changed, 56 insertions, 56 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index f3ab263..5b6a25b 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,8 +1,8 @@
-Revision 0.2.3, released XX-07-2018
+Revision 0.2.3, released XX-12-2018
-----------------------------------
-No changes yet
+- Copyright notice extended to the year 2019
Revision 0.2.2, released 28-06-2018
-----------------------------------
diff --git a/LICENSE.txt b/LICENSE.txt
index 011bb08..ac630e8 100644
--- a/LICENSE.txt
+++ b/LICENSE.txt
@@ -1,4 +1,4 @@
-Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/README.md b/README.md
index eed3ae2..a04c713 100644
--- a/README.md
+++ b/README.md
@@ -25,6 +25,6 @@ or post your question
If you want to contribute ASN.1 modules you have converted into pyasn1,
please send me a pull request.
-Copyright (c) 2005-2018, [Ilya Etingof](mailto:etingof@gmail.com).
+Copyright (c) 2005-2019, [Ilya Etingof](mailto:etingof@gmail.com).
All rights reserved.
diff --git a/pyasn1_modules/pem.py b/pyasn1_modules/pem.py
index e72b97f..a6090bd 100644
--- a/pyasn1_modules/pem.py
+++ b/pyasn1_modules/pem.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import base64
diff --git a/pyasn1_modules/rfc1155.py b/pyasn1_modules/rfc1155.py
index efe39bc..611e97e 100644
--- a/pyasn1_modules/rfc1155.py
+++ b/pyasn1_modules/rfc1155.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# SNMPv1 message syntax
diff --git a/pyasn1_modules/rfc1157.py b/pyasn1_modules/rfc1157.py
index c616dfc..b80d926 100644
--- a/pyasn1_modules/rfc1157.py
+++ b/pyasn1_modules/rfc1157.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# SNMPv1 message syntax
diff --git a/pyasn1_modules/rfc1901.py b/pyasn1_modules/rfc1901.py
index 16c8332..04533da 100644
--- a/pyasn1_modules/rfc1901.py
+++ b/pyasn1_modules/rfc1901.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# SNMPv2c message syntax
diff --git a/pyasn1_modules/rfc1902.py b/pyasn1_modules/rfc1902.py
index b4373f5..d1a1648 100644
--- a/pyasn1_modules/rfc1902.py
+++ b/pyasn1_modules/rfc1902.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# SNMPv2c message syntax
diff --git a/pyasn1_modules/rfc1905.py b/pyasn1_modules/rfc1905.py
index e35f37d..567e818 100644
--- a/pyasn1_modules/rfc1905.py
+++ b/pyasn1_modules/rfc1905.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# SNMPv2c PDU syntax
diff --git a/pyasn1_modules/rfc2251.py b/pyasn1_modules/rfc2251.py
index 88ee9a8..84c3d87 100644
--- a/pyasn1_modules/rfc2251.py
+++ b/pyasn1_modules/rfc2251.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# LDAP message syntax
diff --git a/pyasn1_modules/rfc2314.py b/pyasn1_modules/rfc2314.py
index 5a6d927..a453217 100644
--- a/pyasn1_modules/rfc2314.py
+++ b/pyasn1_modules/rfc2314.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# PKCS#10 syntax
diff --git a/pyasn1_modules/rfc2315.py b/pyasn1_modules/rfc2315.py
index c7e53b9..932c984 100644
--- a/pyasn1_modules/rfc2315.py
+++ b/pyasn1_modules/rfc2315.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# PKCS#7 message syntax
diff --git a/pyasn1_modules/rfc2437.py b/pyasn1_modules/rfc2437.py
index 0866f57..1139eb4 100644
--- a/pyasn1_modules/rfc2437.py
+++ b/pyasn1_modules/rfc2437.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# PKCS#1 syntax
diff --git a/pyasn1_modules/rfc2459.py b/pyasn1_modules/rfc2459.py
index 3d00adf..071e5da 100644
--- a/pyasn1_modules/rfc2459.py
+++ b/pyasn1_modules/rfc2459.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# X.509 message syntax
diff --git a/pyasn1_modules/rfc2511.py b/pyasn1_modules/rfc2511.py
index 00ef441..6b3c37c 100644
--- a/pyasn1_modules/rfc2511.py
+++ b/pyasn1_modules/rfc2511.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# X.509 certificate Request Message Format (CRMF) syntax
diff --git a/pyasn1_modules/rfc2560.py b/pyasn1_modules/rfc2560.py
index f6e0df0..c37e25b 100644
--- a/pyasn1_modules/rfc2560.py
+++ b/pyasn1_modules/rfc2560.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# OCSP request/response syntax
diff --git a/pyasn1_modules/rfc2986.py b/pyasn1_modules/rfc2986.py
index 47562c0..014f2cb 100644
--- a/pyasn1_modules/rfc2986.py
+++ b/pyasn1_modules/rfc2986.py
@@ -3,7 +3,7 @@
# This file is part of pyasn1-modules software.
#
# Created by Joel Johnson with asn1ate tool.
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# PKCS #10: Certification Request Syntax Specification
diff --git a/pyasn1_modules/rfc3280.py b/pyasn1_modules/rfc3280.py
index 58dba38..6c45b8f 100644
--- a/pyasn1_modules/rfc3280.py
+++ b/pyasn1_modules/rfc3280.py
@@ -3,7 +3,7 @@
# This file is part of pyasn1-modules software.
#
# Created by Stanisław Pitucha with asn1ate tool.
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# Internet X.509 Public Key Infrastructure Certificate and Certificate
diff --git a/pyasn1_modules/rfc3281.py b/pyasn1_modules/rfc3281.py
index 9378a45..39ce824 100644
--- a/pyasn1_modules/rfc3281.py
+++ b/pyasn1_modules/rfc3281.py
@@ -3,7 +3,7 @@
# This file is part of pyasn1-modules software.
#
# Created by Stanisław Pitucha with asn1ate tool.
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# An Internet Attribute Certificate Profile for Authorization
diff --git a/pyasn1_modules/rfc3412.py b/pyasn1_modules/rfc3412.py
index 8644c62..59f8495 100644
--- a/pyasn1_modules/rfc3412.py
+++ b/pyasn1_modules/rfc3412.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# SNMPv3 message syntax
diff --git a/pyasn1_modules/rfc3414.py b/pyasn1_modules/rfc3414.py
index 2818379..b9087cb 100644
--- a/pyasn1_modules/rfc3414.py
+++ b/pyasn1_modules/rfc3414.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# SNMPv3 message syntax
diff --git a/pyasn1_modules/rfc3447.py b/pyasn1_modules/rfc3447.py
index ff5c6b5..a5499fe 100644
--- a/pyasn1_modules/rfc3447.py
+++ b/pyasn1_modules/rfc3447.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# PKCS#1 syntax
diff --git a/pyasn1_modules/rfc3852.py b/pyasn1_modules/rfc3852.py
index 04b215e..7c8f6c6 100644
--- a/pyasn1_modules/rfc3852.py
+++ b/pyasn1_modules/rfc3852.py
@@ -3,7 +3,7 @@
# This file is part of pyasn1-modules software.
#
# Created by Stanisław Pitucha with asn1ate tool.
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# Cryptographic Message Syntax (CMS)
diff --git a/pyasn1_modules/rfc4210.py b/pyasn1_modules/rfc4210.py
index 39b468f..c43fc60 100644
--- a/pyasn1_modules/rfc4210.py
+++ b/pyasn1_modules/rfc4210.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# Certificate Management Protocol structures as per RFC4210
diff --git a/pyasn1_modules/rfc4211.py b/pyasn1_modules/rfc4211.py
index 01c10cd..cc79261 100644
--- a/pyasn1_modules/rfc4211.py
+++ b/pyasn1_modules/rfc4211.py
@@ -3,7 +3,7 @@
# This file is part of pyasn1-modules software.
#
# Created by Stanisław Pitucha with asn1ate tool.
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# Internet X.509 Public Key Infrastructure Certificate Request
diff --git a/pyasn1_modules/rfc5208.py b/pyasn1_modules/rfc5208.py
index 85bb530..14082a8 100644
--- a/pyasn1_modules/rfc5208.py
+++ b/pyasn1_modules/rfc5208.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# PKCS#8 syntax
diff --git a/pyasn1_modules/rfc5280.py b/pyasn1_modules/rfc5280.py
index 1a01352..df4b1fc 100644
--- a/pyasn1_modules/rfc5280.py
+++ b/pyasn1_modules/rfc5280.py
@@ -3,7 +3,7 @@
# This file is part of pyasn1-modules software.
#
# Created by Stanisław Pitucha with asn1ate tool.
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# Internet X.509 Public Key Infrastructure Certificate and Certificate
diff --git a/pyasn1_modules/rfc5652.py b/pyasn1_modules/rfc5652.py
index 309d1d6..094ce74 100644
--- a/pyasn1_modules/rfc5652.py
+++ b/pyasn1_modules/rfc5652.py
@@ -3,7 +3,7 @@
# This file is part of pyasn1-modules software.
#
# Created by Stanisław Pitucha with asn1ate tool.
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# Cryptographic Message Syntax (CMS)
diff --git a/pyasn1_modules/rfc6402.py b/pyasn1_modules/rfc6402.py
index 3814a3d..7c9f862 100644
--- a/pyasn1_modules/rfc6402.py
+++ b/pyasn1_modules/rfc6402.py
@@ -3,7 +3,7 @@
# This file is part of pyasn1-modules software.
#
# Created by Stanisław Pitucha with asn1ate tool.
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# Certificate Management over CMS (CMC) Updates
diff --git a/setup.py b/setup.py
index 3271548..d67b5de 100644
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/__main__.py b/tests/__main__.py
index 919fa4c..4d1102c 100644
--- a/tests/__main__.py
+++ b/tests/__main__.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
try:
diff --git a/tests/test_rfc2314.py b/tests/test_rfc2314.py
index c740894..985e504 100644
--- a/tests/test_rfc2314.py
+++ b/tests/test_rfc2314.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/test_rfc2315.py b/tests/test_rfc2315.py
index f9e1781..e65ce80 100644
--- a/tests/test_rfc2315.py
+++ b/tests/test_rfc2315.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/test_rfc2437.py b/tests/test_rfc2437.py
index 70431f0..7eaedd6 100644
--- a/tests/test_rfc2437.py
+++ b/tests/test_rfc2437.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/test_rfc2459.py b/tests/test_rfc2459.py
index e213972..e6335f4 100644
--- a/tests/test_rfc2459.py
+++ b/tests/test_rfc2459.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/test_rfc2511.py b/tests/test_rfc2511.py
index 78ddb53..327b561 100644
--- a/tests/test_rfc2511.py
+++ b/tests/test_rfc2511.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/test_rfc2560.py b/tests/test_rfc2560.py
index d07b588..79f8aad 100644
--- a/tests/test_rfc2560.py
+++ b/tests/test_rfc2560.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/test_rfc2986.py b/tests/test_rfc2986.py
index 6ed5201..8dbad8b 100644
--- a/tests/test_rfc2986.py
+++ b/tests/test_rfc2986.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/test_rfc4210.py b/tests/test_rfc4210.py
index 17c6056..0e78b9a 100644
--- a/tests/test_rfc4210.py
+++ b/tests/test_rfc4210.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/test_rfc5208.py b/tests/test_rfc5208.py
index 2831c43..71d14b6 100644
--- a/tests/test_rfc5208.py
+++ b/tests/test_rfc5208.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/test_rfc5280.py b/tests/test_rfc5280.py
index 7c18e64..7d29388 100644
--- a/tests/test_rfc5280.py
+++ b/tests/test_rfc5280.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/test_rfc5652.py b/tests/test_rfc5652.py
index b5ecdae..3b08eb1 100644
--- a/tests/test_rfc5652.py
+++ b/tests/test_rfc5652.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tools/cmpdump.py b/tools/cmpdump.py
index f1fa083..0c30a8c 100755
--- a/tools/cmpdump.py
+++ b/tools/cmpdump.py
@@ -2,7 +2,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# Read ASN.1/PEM CMP message on stdin, parse into
diff --git a/tools/crldump.py b/tools/crldump.py
index de9afa9..54b8a37 100755
--- a/tools/crldump.py
+++ b/tools/crldump.py
@@ -2,7 +2,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# Read X.509 CRL on stdin, print them pretty and encode back into
diff --git a/tools/crmfdump.py b/tools/crmfdump.py
index a0a5925..971c53a 100755
--- a/tools/crmfdump.py
+++ b/tools/crmfdump.py
@@ -2,7 +2,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# Read ASN.1/PEM X.509 CRMF request on stdin, parse into
diff --git a/tools/ocspclient.py b/tools/ocspclient.py
index b121c89..c48a509 100755
--- a/tools/ocspclient.py
+++ b/tools/ocspclient.py
@@ -2,7 +2,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import hashlib
diff --git a/tools/ocspreqdump.py b/tools/ocspreqdump.py
index c6cb515..0b1e571 100755
--- a/tools/ocspreqdump.py
+++ b/tools/ocspreqdump.py
@@ -2,7 +2,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# Read ASN.1/PEM X.509 CRMF request on stdin, parse into
diff --git a/tools/ocsprspdump.py b/tools/ocsprspdump.py
index 511c518..33069a8 100755
--- a/tools/ocsprspdump.py
+++ b/tools/ocsprspdump.py
@@ -2,7 +2,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# Read ASN.1/PEM OCSP response on stdin, parse into
diff --git a/tools/pkcs10dump.py b/tools/pkcs10dump.py
index bd34475..13a7df3 100755
--- a/tools/pkcs10dump.py
+++ b/tools/pkcs10dump.py
@@ -2,7 +2,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# Read ASN.1/PEM X.509 certificate requests (PKCS#10 format) on stdin,
diff --git a/tools/pkcs1dump.py b/tools/pkcs1dump.py
index e3f64e5..0329b6b 100755
--- a/tools/pkcs1dump.py
+++ b/tools/pkcs1dump.py
@@ -2,7 +2,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# Read unencrypted PKCS#1/PKIX-compliant, PEM&DER encoded private keys on
diff --git a/tools/pkcs7dump.py b/tools/pkcs7dump.py
index b915c61..5884faf 100755
--- a/tools/pkcs7dump.py
+++ b/tools/pkcs7dump.py
@@ -2,7 +2,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# Read ASN.1/PEM PKCS#7 on stdin, parse it into plain text,
diff --git a/tools/pkcs8dump.py b/tools/pkcs8dump.py
index e87c086..d2108e6 100755
--- a/tools/pkcs8dump.py
+++ b/tools/pkcs8dump.py
@@ -2,7 +2,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# Read bunch of ASN.1/PEM plain/encrypted private keys in PKCS#8
diff --git a/tools/snmpget.py b/tools/snmpget.py
index c019647..f089baf 100755
--- a/tools/snmpget.py
+++ b/tools/snmpget.py
@@ -2,7 +2,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# Generate SNMPGET request, parse response
diff --git a/tools/x509dump-rfc5280.py b/tools/x509dump-rfc5280.py
index 450b414..81b19c7 100755
--- a/tools/x509dump-rfc5280.py
+++ b/tools/x509dump-rfc5280.py
@@ -4,7 +4,7 @@
# This file is part of pyasn1-modules software.
#
# Created by Stanisław Pitucha with asn1ate tool.
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# Read ASN.1/PEM X.509 certificates on stdin, parse each into plain text,
diff --git a/tools/x509dump.py b/tools/x509dump.py
index b40e783..84e2a94 100755
--- a/tools/x509dump.py
+++ b/tools/x509dump.py
@@ -2,7 +2,7 @@
#
# This file is part of pyasn1-modules software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# Read ASN.1/PEM X.509 certificates on stdin, parse each into plain text,