From: Sergey Matveev Date: Fri, 4 Sep 2020 07:30:03 +0000 (+0300) Subject: More CER encoding mentioning X-Git-Tag: 8.2~3 X-Git-Url: http://www.git.cypherpunks.ru/?p=pyderasn.git;a=commitdiff_plain;h=22b1dcbe470181ef497ef47e90da790c931fee08 More CER encoding mentioning --- diff --git a/doc/index.rst b/doc/index.rst index 9f5d371..60fadae 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -11,9 +11,10 @@ PyDERASN -- strict and fast ASN.1 DER/CER/BER library for Python Notation One) is a standard for abstract data serialization. PyDERASN is yet another library for dealing with ASN.1 structures, decoding them in `BER/CER/DER `__ formats and -encoding to DER (Distinguished Encoding Rules). Although ASN.1 is -written more than 30 years ago by wise Ancients (taken from ``pyasn1``'s -README), it is still often can be seen anywhere in our life. +encoding to either DER (Distinguished Encoding Rules) or CER (Canonical +Encoding Rules). Although ASN.1 is written more than 30 years ago by wise +Ancients (taken from ``pyasn1``'s README), it is still often can be seen +anywhere in our life. PyDERASN is `free software `__, licenced under `GNU LGPLv3 `__. diff --git a/pyderasn.py b/pyderasn.py index e3ac23f..bc2911b 100755 --- a/pyderasn.py +++ b/pyderasn.py @@ -17,9 +17,9 @@ # # You should have received a copy of the GNU Lesser General Public # License along with this program. If not, see . -"""Python ASN.1 DER/BER codec with abstract structures +"""Python ASN.1 DER/CER/BER codec with abstract structures -This library allows you to marshal various structures in ASN.1 DER +This library allows you to marshal various structures in ASN.1 DER/CER format, unmarshal BER/CER/DER ones. >>> i = Integer(123)