aboutsummaryrefslogtreecommitdiff
path: root/scripts/rpki/x509.py
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2007-08-12 19:53:19 +0000
committerRob Austein <sra@hactrn.net>2007-08-12 19:53:19 +0000
commit37f59a534df5e6b113323687c3342ad871ac5423 (patch)
tree331b285c3a61bdb5f9b1e93a58f1a9141acc461b /scripts/rpki/x509.py
parentac4ab6d80e4fd00291fe7a60968aa0412606ca63 (diff)
Doxynits
svn path=/scripts/rpki/Doxyfile; revision=877
Diffstat (limited to 'scripts/rpki/x509.py')
-rw-r--r--scripts/rpki/x509.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/rpki/x509.py b/scripts/rpki/x509.py
index 9b9b1c28..5f9788c9 100644
--- a/scripts/rpki/x509.py
+++ b/scripts/rpki/x509.py
@@ -43,10 +43,18 @@ class PEM_converter(object):
class DER_object(object):
"""Virtual class to hold a generic DER object."""
+ ## Formats supported in this object
formats = ("DER",)
+
+ ## PEM converter for this object
pem_converter = None
+
+ ## Other attributes that self.clear() should whack
other_clear = ()
+ ## @var DER
+ ## DER value of this object
+
def empty(self):
"""Test whether this object is empty."""
for a in self.formats: