X-Git-Url: http://www.git.cypherpunks.ru/?p=pyderasn.git;a=blobdiff_plain;f=doc%2Fexamples.rst;h=7e4c473bc70bd5d46ffeafee57d3644027bdd333;hp=667f0ab90a6caf3791173e12ea8a2277a63ed01e;hb=276256c09380abd90ef7977bfa46d2dfc810810d;hpb=b8a49984cedf903fa9c24b2c36de20c74089cb7d diff --git a/doc/examples.rst b/doc/examples.rst index 667f0ab..7e4c473 100644 --- a/doc/examples.rst +++ b/doc/examples.rst @@ -194,13 +194,13 @@ As command line utility You can decode DER/BER files using command line abilities and get the same picture as above by executing:: - % python -m pyderasn --schema tests.test_crts:Certificate path/to/file + $ python -m pyderasn --schema tests.test_crts:Certificate path/to/file If there is no schema for you file, then you can try parsing it without, but of course IMPLICIT tags will often make it impossible. But result is good enough for the certificate above:: - % python -m pyderasn path/to/file + $ python -m pyderasn path/to/file 0 [1,3,1604] . >: SEQUENCE OF 4 [1,3,1453] . . >: SEQUENCE OF 8 [0,0, 5] . . . . >: [0] ANY @@ -245,7 +245,7 @@ from ``tests/test_crts.py``:: then you can pass it to pretty printer to see human readable OIDs:: - % python -m pyderasn --oids tests.test_crts:some_oids path/to/file + $ python -m pyderasn --oids tests.test_crts:some_oids path/to/file [...] 37 [1,1, 11] . . . . . . >: SET OF 39 [1,1, 9] . . . . . . . . >: SEQUENCE OF @@ -269,7 +269,7 @@ names it is passing during the decode process. Each element has its own unique path inside the whole ASN.1 tree. You can print it out with ``--print-decode-path`` option:: - % python -m pyderasn --schema path.to:Certificate --print-decode-path path/to/file + $ python -m pyderasn --schema path.to:Certificate --print-decode-path path/to/file 0 [1,3,1604] Certificate SEQUENCE [] 4 [1,3,1453] . tbsCertificate: TBSCertificate SEQUENCE [tbsCertificate] 10-2 [1,1, 1] . . version: [0] EXPLICIT Version INTEGER v3 OPTIONAL [tbsCertificate:version] @@ -290,7 +290,7 @@ unique path inside the whole ASN.1 tree. You can print it out with Now you can print only the specified tree, for example signature algorithm:: - % python -m pyderasn --schema path.to:Certificate --decode-path-only tbsCertificate:signature path/to/file + $ python -m pyderasn --schema path.to:Certificate --decode-path-only tbsCertificate:signature path/to/file 18 [1,1, 13] AlgorithmIdentifier SEQUENCE 20 [1,1, 9] . algorithm: OBJECT IDENTIFIER 1.2.840.113549.1.1.5 31 [0,0, 2] . parameters: [UNIV 5] ANY OPTIONAL @@ -301,14 +301,14 @@ Descriptive errors If you have bad DER/BER, then errors will show you where error occurred:: - % python -m pyderasn --schema tests.test_crts:Certificate path/to/bad/file + $ python -m pyderasn --schema tests.test_crts:Certificate path/to/bad/file Traceback (most recent call last): [...] pyderasn.DecodeError: UTCTime (tbsCertificate:validity:notAfter:utcTime) (at 328) invalid UTCTime format :: - % python -m pyderasn path/to/bad/file + $ python -m pyderasn path/to/bad/file [...] pyderasn.DecodeError: UTCTime (0:SequenceOf:4:SequenceOf:1:UTCTime) (at 328) invalid UTCTime format