aboutsummaryrefslogtreecommitdiffstats
path: root/pyasn1_modules/rfc6019.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyasn1_modules/rfc6019.py')
-rw-r--r--pyasn1_modules/rfc6019.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/pyasn1_modules/rfc6019.py b/pyasn1_modules/rfc6019.py
index 7816593..c6872c7 100644
--- a/pyasn1_modules/rfc6019.py
+++ b/pyasn1_modules/rfc6019.py
@@ -14,6 +14,8 @@
from pyasn1.type import constraint
from pyasn1.type import univ
+from pyasn1_modules import rfc5652
+
MAX = float('inf')
@@ -33,9 +35,11 @@ class BinarySigningTime(BinaryTime):
pass
-# Map of Attribute Type OIDs to Attributes
-# To be added to the ones that are in rfc5652.py
+# Map of Attribute Type OIDs to Attributes ia added to the
+# ones that are in rfc5652.py
-cmsAttributesMapUpdate = {
+_cmsAttributesMapUpdate = {
id_aa_binarySigningTime: BinarySigningTime(),
}
+
+rfc5652.cmsAttributesMap.update(_cmsAttributesMapUpdate)