aboutsummaryrefslogtreecommitdiff
path: root/pyasn1_modules
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2016-03-27 23:01:34 +0200
committerIlya Etingof <etingof@gmail.com>2016-03-27 23:01:34 +0200
commitbc17ad0b90ec51a01b306a88e48fc22a7befb895 (patch)
treeb67c823ef67445af9553f40bf10d139ebfe54752 /pyasn1_modules
parentcb4a0d2d66d6f124371f12e070b325ecb4be819f (diff)
downloadpyasn1-modules-bc17ad0b90ec51a01b306a88e48fc22a7befb895.tar.gz
copyright info header added to merged files
Diffstat (limited to 'pyasn1_modules')
-rw-r--r--pyasn1_modules/rfc3280.py21
-rw-r--r--pyasn1_modules/rfc3281.py22
-rw-r--r--pyasn1_modules/rfc3852.py25
-rw-r--r--pyasn1_modules/rfc4211.py26
-rw-r--r--pyasn1_modules/rfc5280.py21
-rw-r--r--pyasn1_modules/rfc5652.py23
-rw-r--r--pyasn1_modules/rfc6402.py25
7 files changed, 105 insertions, 58 deletions
diff --git a/pyasn1_modules/rfc3280.py b/pyasn1_modules/rfc3280.py
index a019f98..bae34aa 100644
--- a/pyasn1_modules/rfc3280.py
+++ b/pyasn1_modules/rfc3280.py
@@ -1,10 +1,17 @@
-"""
-RFC3280
-Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation
-List (CRL) Profile
-"""
-# Generated by asn1ate, and manually adjusted
-
+# coding: utf-8
+#
+# This file is part of pyasn1-modules software.
+#
+# Created by Stanisław Pitucha with asn1ate tool.
+# Copyright (c) 2005-2016, Ilya Etingof <ilya@glas.net>
+# License: http://pyasn1.sf.net/license.html
+#
+# Internet X.509 Public Key Infrastructure Certificate and Certificate
+# Revocation List (CRL) Profile
+#
+# ASN.1 source from:
+# http://www.ietf.org/rfc/rfc3280.txt
+#
from pyasn1.type import univ, char, namedtype, namedval, tag, constraint, useful
MAX = 64
diff --git a/pyasn1_modules/rfc3281.py b/pyasn1_modules/rfc3281.py
index 38db8c4..0a7d020 100644
--- a/pyasn1_modules/rfc3281.py
+++ b/pyasn1_modules/rfc3281.py
@@ -1,10 +1,16 @@
-"""
-RFC3281
-An Internet Attribute Certificate Profile for Authorization
-"""
-
-# Generated by asn1ate, and manually adjusted
-
+# coding: utf-8
+#
+# This file is part of pyasn1-modules software.
+#
+# Created by Stanisław Pitucha with asn1ate tool.
+# Copyright (c) 2005-2016, Ilya Etingof <ilya@glas.net>
+# License: http://pyasn1.sf.net/license.html
+#
+# An Internet Attribute Certificate Profile for Authorization
+#
+# ASN.1 source from:
+# http://www.ietf.org/rfc/rfc3281.txt
+#
from pyasn1.type import univ
from pyasn1.type import char
from pyasn1.type import namedtype
@@ -13,7 +19,7 @@ from pyasn1.type import tag
from pyasn1.type import constraint
from pyasn1.type import useful
-from . import rfc3280
+from pyasn1_modules import rfc3280
MAX=64
diff --git a/pyasn1_modules/rfc3852.py b/pyasn1_modules/rfc3852.py
index 32a5655..e4dc7e4 100644
--- a/pyasn1_modules/rfc3852.py
+++ b/pyasn1_modules/rfc3852.py
@@ -1,15 +1,22 @@
-"""
-RFC3852
-Cryptographic Message Syntax (CMS)
-"""
-# Generated by asn1ate, and manually adjusted
-
-from pyasn1.type import univ, char, namedtype, namedval, tag, constraint, useful
+# coding: utf-8
+#
+# This file is part of pyasn1-modules software.
+#
+# Created by Stanisław Pitucha with asn1ate tool.
+# Copyright (c) 2005-2016, Ilya Etingof <ilya@glas.net>
+# License: http://pyasn1.sf.net/license.html
+#
+# Cryptographic Message Syntax (CMS)
+#
+# ASN.1 source from:
+# http://www.ietf.org/rfc/rfc3852.txt
+#
+from pyasn1.type import univ, namedtype, namedval, tag, constraint, useful
MAX = 64
-from . import rfc3280
-from . import rfc3281
+from pyasn1_modules import rfc3280
+from pyasn1_modules import rfc3281
def _OID(*components):
output = []
diff --git a/pyasn1_modules/rfc4211.py b/pyasn1_modules/rfc4211.py
index 0f404de..48056eb 100644
--- a/pyasn1_modules/rfc4211.py
+++ b/pyasn1_modules/rfc4211.py
@@ -1,15 +1,21 @@
-"""
-RFC4211
-Internet X.509 Public Key Infrastructure Certificate Request Message Format
-(CRMF)
-"""
-
-# Generated by asn1ate, and manually adjusted
-
+# coding: utf-8
+#
+# This file is part of pyasn1-modules software.
+#
+# Created by Stanisław Pitucha with asn1ate tool.
+# Copyright (c) 2005-2016, Ilya Etingof <ilya@glas.net>
+# License: http://pyasn1.sf.net/license.html
+#
+# Internet X.509 Public Key Infrastructure Certificate Request
+# Message Format (CRMF)
+#
+# ASN.1 source from:
+# http://www.ietf.org/rfc/rfc4211.txt
+#
from pyasn1.type import univ, char, namedtype, namedval, tag, constraint, useful
-from . import rfc3280
-from . import rfc3852
+from pyasn1_modules import rfc3280
+from pyasn1_modules import rfc3852
MAX = 64
diff --git a/pyasn1_modules/rfc5280.py b/pyasn1_modules/rfc5280.py
index eabc0c6..cef8023 100644
--- a/pyasn1_modules/rfc5280.py
+++ b/pyasn1_modules/rfc5280.py
@@ -1,10 +1,17 @@
-"""
-RFC5280
-Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation
-List (CRL) Profile
-"""
-# Generated by asn1ate, and manually adjusted
-
+# coding: utf-8
+#
+# This file is part of pyasn1-modules software.
+#
+# Created by Stanisław Pitucha with asn1ate tool.
+# Copyright (c) 2005-2016, Ilya Etingof <ilya@glas.net>
+# License: http://pyasn1.sf.net/license.html
+#
+# Internet X.509 Public Key Infrastructure Certificate and Certificate
+# Revocation List (CRL) Profile
+#
+# ASN.1 source from:
+# http://www.ietf.org/rfc/rfc5280.txt
+#
from pyasn1.type import univ
from pyasn1.type import char
from pyasn1.type import namedtype
diff --git a/pyasn1_modules/rfc5652.py b/pyasn1_modules/rfc5652.py
index fc2409c..78a389d 100644
--- a/pyasn1_modules/rfc5652.py
+++ b/pyasn1_modules/rfc5652.py
@@ -1,9 +1,16 @@
-"""
-RFC5652
-Cryptographic Message Syntax (CMS)
-"""
-# Generated by asn1ate, and manually adjusted
-
+# coding: utf-8
+#
+# This file is part of pyasn1-modules software.
+#
+# Created by Stanisław Pitucha with asn1ate tool.
+# Copyright (c) 2005-2016, Ilya Etingof <ilya@glas.net>
+# License: http://pyasn1.sf.net/license.html
+#
+# Cryptographic Message Syntax (CMS)
+#
+# ASN.1 source from:
+# http://www.ietf.org/rfc/rfc5652.txt
+#
from pyasn1.type import char
from pyasn1.type import constraint
from pyasn1.type import namedtype
@@ -12,8 +19,8 @@ from pyasn1.type import tag
from pyasn1.type import univ
from pyasn1.type import useful
-from . import rfc3281
-from . import rfc5280
+from pyasn1_modules import rfc3281
+from pyasn1_modules import rfc5280
MAX = 64
diff --git a/pyasn1_modules/rfc6402.py b/pyasn1_modules/rfc6402.py
index c18637d..ce70de6 100644
--- a/pyasn1_modules/rfc6402.py
+++ b/pyasn1_modules/rfc6402.py
@@ -1,14 +1,21 @@
-"""
-RFC6402
-Certificate Management over CMS (CMC) Updates
-"""
-# Generated by asn1ate, and manually adjusted
-
+# coding: utf-8
+#
+# This file is part of pyasn1-modules software.
+#
+# Created by Stanisław Pitucha with asn1ate tool.
+# Copyright (c) 2005-2016, Ilya Etingof <ilya@glas.net>
+# License: http://pyasn1.sf.net/license.html
+#
+# Certificate Management over CMS (CMC) Updates
+#
+# ASN.1 source from:
+# http://www.ietf.org/rfc/rfc6402.txt
+#
from pyasn1.type import univ, char, namedtype, namedval, tag, constraint, useful
-from . import rfc4211
-from . import rfc5280
-from . import rfc5652
+from pyasn1_modules import rfc4211
+from pyasn1_modules import rfc5280
+from pyasn1_modules import rfc5652
MAX = 64