CHANGES 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. Revision 0.0.5
  2. --------------
  3. - License updated to vanilla BSD 2-Clause to ease package use
  4. (http://opensource.org/licenses/BSD-2-Clause).
  5. Revision 0.0.4
  6. --------------
  7. - CMP structures (RFC4210), cmpdump.py tool and test case added.
  8. - SNMPv2c Message syntax (RFC1901) properly defined.
  9. - Package version established in form of __init__.__version__
  10. which is in-sync with distutils.
  11. - Package meta information and classifiers updated.
  12. Revision 0.0.3
  13. --------------
  14. - Text cases implemented
  15. - X.509 CRMF structures (RFC2511) and crmfdump.py tool added
  16. - X.509 CRL structures and crldump.py tool added
  17. - PKCS#10 structures and pkcs10dump.py tool added
  18. - PKCS#8 structures and pkcs8dump.py tool added
  19. - PKCS#1 (rfc3447) structures added
  20. - OCSP request & response dumping tool added
  21. - SNMPv2c & SNMPv3/USM structures added
  22. - keydump.py moved into pkcs1dump.py
  23. - PEM files read function generalized to be used more universally.
  24. - complete PKIX1 '88 code implemented at rfc2459.py
  25. Revision 0.0.2
  26. --------------
  27. - Require pyasn1 >= 0.1.1
  28. - Fixes towards Py3K compatibility
  29. + use either of existing urllib module
  30. + adopt to the new bytes type
  31. + print operator is now a function
  32. + new exception syntax
  33. Revision 0.0.1a
  34. ---------------
  35. - Initial revision, most code carried from pyasn1 examples.