1. 47f78fd Improve variable name by wbond · 10 years ago
  2. 91d7032 Added .sha1 and .sha256 to x509.Name class by wbond · 10 years ago
  3. 2972012 Added business_category OID by wbond · 10 years ago
  4. fc9bf82 Change the PEM test with headers to use an OrderedDict for header order consistency by wbond · 10 years ago
  5. 66babf6 Add .sha1 and .sha256 properties to PublicKeyInfo that calculate over the DER-encoded contents of the public_key field by wbond · 10 years ago
  6. 77b0ccd Fixed typos in OCSP code by wbond · 10 years ago
  7. 2ddd95f Removed extra unnecessary code from SequenceOf._set_contents() that had been pulled from Sequence by wbond · 10 years ago
  8. 417eae5 When creating a Sequence from scratch, make sure the default values are populated by wbond · 10 years ago
  9. d556acc Extracted field definition determination and value creation from Sequence __setitem__() and _parse_children() by wbond · 10 years ago
  10. 39ea6ab Make NoValue() iterate 0 times by wbond · 10 years ago
  11. 5af38cd Explicitly mention pypy3 support by wbond · 10 years ago
  12. d90cf5b Added PEM functionality by wbond · 10 years ago
  13. 08c60fa Add convenience property and tests for authority information access value on Certificate objects by wbond · 10 years ago
  14. a0d4548 Added authority info access syntax extension to Certificate in addition to CRL by wbond · 10 years ago
  15. a43b3fb Add detection of the inhibit anyPolicy extension by wbond · 10 years ago
  16. 8bb77d0 Add convenience attributes to x509.Certificate for accessing extensions used in path validation by wbond · 10 years ago
  17. d7837d0 Changed BitString to use item access instead of attributes for named bits by wbond · 10 years ago
  18. 3855a15 Added CSR structures, tests and reference links by wbond · 10 years ago
  19. f0b6739 Handle situations where .native is called but _fields has not been set by wbond · 10 years ago
  20. d8a5444 Moved inverse_mod() function into _int.py since it itself is not strictly for performance by wbond · 10 years ago
  21. 1bfa4de Updated tests to reflect new, more specific name for RSA signatures by wbond · 10 years ago
  22. d6b8b2e Correct PublicKeyInfo to calculate the bit size of a DSA key from the parameter p and not the public key integer by wbond · 10 years ago
  23. c9fec24 Moved files to clean up main folder and make intent of performance optimization clear by wbond · 10 years ago
  24. 2592ed9 Added params for RSAES-OAEP and RSASSA-PSS, tweaked name for RSASSA-PKCS#1v1.5 OID by wbond · 10 years ago
  25. b924d33 Added PublicKeyInfo.unwrap() for RSA keys by wbond · 10 years ago
  26. f4f176c Added .byte_size property to PublicKeyInfo and PrivateKeyInfo, fix .bit_size to not adjust to byte boundary by wbond · 10 years ago
  27. 680cba1 Changed key algo name from 'ecdsa' to just 'ec' since EC keys can be used for DH too by wbond · 10 years ago
  28. af737d9 Fix SafeBag attributes to be a set instead of a sequence by wbond · 10 years ago
  29. bb57b4e Improve error handling in situations where specs and data don't align by wbond · 10 years ago
  30. a9aee32 Properly handle Choice fields that are optional by wbond · 10 years ago
  31. 9c8f203 Handle explicitly tagged Any value with no concrete spec by wbond · 10 years ago
  32. 25e96a9 Change NameTypeAndValue to use DirectoryString for all OIDs by wbond · 10 years ago
  33. dbd7240 Added run.py for executing tests, code coverage and linting by wbond · 10 years ago
  34. d691c88 Make it clear point compressions support is patented by wbond · 10 years ago
  35. 11f875b Fixed some bugs with serializing integers by wbond · 10 years ago
  36. 216fd13 Fix .curve property docstrings by wbond · 10 years ago
  37. 1b00a59 Added the .hash_algo property to PublicKeyInfo and PrivateKeyInfo by wbond · 10 years ago
  38. 6b926f6 Search for crypto instead of libcrypto for Linux compat by wbond · 10 years ago
  39. ba4a693 Switch to 'typedef ...' instead of 'typedef void' by wbond · 10 years ago
  40. 6b66ab5 Make __future__ imports consistent for better compat between 2 and 3 by wbond · 10 years ago
  41. db507c1 Use typedef void instead of just void so the cdef is clearer by wbond · 10 years ago
  42. 1315aa1 Fix some module docstring verbiage by wbond · 10 years ago
  43. 300b612 Changed inverse_mod() function to use the following in order: cffi, ctypes, pure python by wbond · 10 years ago
  44. ea25fc2 Added module and function docstrings by wbond · 10 years ago
  45. cd967c3 Fixed up __future__ imports by wbond · 10 years ago
  46. e7c390c Improved consistency of elliptic curve names by wbond · 10 years ago
  47. f937f48 Added .bit_size, .algorithm and .curve to PublicKeyInfo and PrivateKeyInfo by wbond · 10 years ago
  48. e95da2c Removed normal_tagging parameter for .dump(), added .untag() and .retag() by wbond · 10 years ago
  49. eb5eb6e Add the .public_key property to PrivateKeyInfo and cached values by wbond · 10 years ago
  50. 156877f Fixed a linting error in core by wbond · 10 years ago
  51. 500703a Improved the performance of computing an elliptic curve public key from the private key by wbond · 10 years ago
  52. eb02d76 Improved key fingerprinting for ECDSA by wbond · 10 years ago
  53. a4bfddd Fixed bugs in PrivateKeyInfo.wrap() by wbond · 10 years ago
  54. 488eac3 Added ability to compute the public key from a private key by wbond · 10 years ago
  55. 0a689b9 Ensure int type checking works on Python 2 by wbond · 10 years ago
  56. 0a7fead Added missing DSA public key files by wbond · 10 years ago
  57. 29f8149 Corrected data type of ECPrivateKey.public_key field by wbond · 10 years ago
  58. 92954e2 Moved int_*_bytes() functions to separate file by wbond · 10 years ago
  59. 9c9e2ee Fixed bug allowing non optional fields in a Sequence to be missing, improved error messaging by wbond · 10 years ago
  60. 438f877 Mark teletex_codex as private by wbond · 10 years ago
  61. 73c17c9 Added Asn1Value.pprint() by wbond · 10 years ago
  62. 40a32f0 Fixed CompressionAlgorithm to make parameters optional by wbond · 10 years ago
  63. 8b59e05 Add .wrap() methods to PublicKeyInfo and PrivateKeyInfo by wbond · 10 years ago
  64. 1e2a602 Allow adding children to SequenceOf/SetOf via [] assignment by wbond · 10 years ago
  65. abda3a6 Make sure trailing default fields in a Sequence get initialized by wbond · 10 years ago
  66. 971b5c0 Fix some serialization bugs in Sequence and SequenceOf by wbond · 10 years ago
  67. 902d597 Fix bug with wrapped field being double wrapped by wbond · 10 years ago
  68. 3fd1e78 Allow setting Sequence/Set and SequenceOf/SetOf values in constructor via a dict by wbond · 10 years ago
  69. 225418c Fixed various bugs with EncryptionAlgorithm and related structures by wbond · 10 years ago
  70. a19cfe1 Add normal_tagging parameter to .dump() by wbond · 10 years ago
  71. 59af99d Folded PKCS#5 algos into asn1crypto.algos by wbond · 10 years ago
  72. 7a5fbf6 Added a force parameter to .dump() to ensure DER-encoding by wbond · 10 years ago
  73. c33f2e0 Fixed tagging on some PKCS#12 structures by wbond · 10 years ago
  74. 78f043c Improved error messaging when unexpected types are passed by wbond · 10 years ago
  75. 7bc28e3 Fixed int to bytes conversion code on Python 3 to use minimal bytes by wbond · 10 years ago
  76. b5354a4 Fixed bugs related to parsing info about encryption algorithms by wbond · 10 years ago
  77. 703b434 Fixed serialization of ObjectIdentifier by wbond · 10 years ago
  78. 77bf0ad More docs fixes by wbond · 10 years ago
  79. a27ca53 Docs formatting by wbond · 10 years ago
  80. b849594 Add doc links by wbond · 10 years ago
  81. 4c30ef4 Fix table formatting by wbond · 10 years ago
  82. b9b7597 Docs, package infrastructure by wbond · 10 years ago
  83. e91513e Initial version by wbond · 10 years ago