From: Sergey Matveev Date: Sun, 22 Mar 2020 14:47:35 +0000 (+0300) Subject: Missing CER mention in makedist X-Git-Tag: 7.5~2 X-Git-Url: http://www.git.cypherpunks.ru/?p=pyderasn.git;a=commitdiff_plain;h=0ebead641ed9643e3d26275fc7d3e9bd89eee0c6 Missing CER mention in makedist --- diff --git a/makedist.sh b/makedist.sh index 607312f..5217f0b 100755 --- a/makedist.sh +++ b/makedist.sh @@ -58,7 +58,7 @@ Subject: PyDERASN $release release announcement I am pleased to announce PyDERASN $release release availability! -PyDERASN is free software pure Python ASN.1 DER/BER library. +PyDERASN is free software pure Python ASN.1 DER/CER/BER library. ------------------------ >8 ------------------------ diff --git a/pyderasn.py b/pyderasn.py index 7ce0565..4a1244c 100755 --- a/pyderasn.py +++ b/pyderasn.py @@ -20,7 +20,7 @@ """Python ASN.1 DER/BER codec with abstract structures This library allows you to marshal various structures in ASN.1 DER -format, unmarshal them in BER/CER/DER ones. +format, unmarshal BER/CER/DER ones. >>> i = Integer(123) >>> raw = i.encode()