diff options
author | Rob Austein <sra@hactrn.net> | 2007-08-12 04:17:42 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2007-08-12 04:17:42 +0000 |
commit | 307e3c25b1c42e19e996f193a086cc4024f99014 (patch) | |
tree | 1e75459029314380a7ef1016161c1d5e07d23fbd /scripts/rpki/roa.py | |
parent | 4e1caf4abd943317ff18b5f99fd665292f89ba3b (diff) |
More Doxygen.
svn path=/scripts/rpki/Doxyfile; revision=871
Diffstat (limited to 'scripts/rpki/roa.py')
-rw-r--r-- | scripts/rpki/roa.py | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/scripts/rpki/roa.py b/scripts/rpki/roa.py index f6996f4c..3ca6c154 100644 --- a/scripts/rpki/roa.py +++ b/scripts/rpki/roa.py @@ -1,9 +1,14 @@ # $Id$ -from POW._der import * +""" ROA (Route Origin Authorization). + +At the moment this is just the ASN.1 encoder. -# This corresponds to draft-ietf-sidr-roa-format-01, which is a work -# in progress, so this may need updating later. +This corresponds to draft-ietf-sidr-roa-format-01, which is a work in +progress, so this may need updating later. +""" + +from POW._der import * class IPAddresses(SequenceOf): def __init__(self, optional=0, default=''): |