From 22b1dcbe470181ef497ef47e90da790c931fee08 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Fri, 4 Sep 2020 10:30:03 +0300 Subject: [PATCH] More CER encoding mentioning --- doc/index.rst | 7 ++++--- pyderasn.py | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-) 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) -- 2.44.0