1. 63ffc71 Merge pull request #166 from joernheissler/i163 by Will Bond · 4 years, 7 months ago
  2. dcb9ea5 Fixed some incorrectly computed EC private key sizes. by Jörn Heissler · 4 years, 7 months ago
  3. 754aa9d Add brainpool curves from rfc5639 by Jörn Heissler · 4 years, 7 months ago
  4. 4b0557e Add more (legacy) OIDs to keys.NamedCurve() by wbond · 4 years, 8 months ago
  5. a8fa8c5 Fix an absolute import that should have been relative by wbond · 4 years, 8 months ago
  6. f855b33 Merge pull request #138 from space88man/rsassa_pss by Will Bond · 4 years, 8 months ago
  7. 35d6867 Ensure keys.NamedCurve.register() works if setup() has been run or not by wbond · 4 years, 9 months ago
  8. a51063b Fix ValueError in keys.NamedCurve.register() by wbond · 4 years, 9 months ago
  9. 61ae7d7 Ensure EC private keys are encoded to the correct width, per RFC 5915 by wbond · 5 years ago
  10. 564e744 Move functionality to derive public keys from private keys into oscrypto by wbond · 4 years, 11 months ago
  11. 14d22d2 keys.py: add RSASSA_PSS to private key classes by spchan · 5 years ago
  12. 8a45416 keys.py: add RSASSA_PSS OIDs from RFC4055 by spchan · 5 years ago
  13. 3ce6343 Update keys.py by Jörn Heissler · 5 years ago
  14. 6a6e630 Add secp256k1 to NamedCurves by nkostoulas · 5 years ago
  15. a11c450 Add better handling of Subject Directory Attributes, especially related to TPM by wbond · 7 years ago
  16. d62ed9a Update bundled definitions to use new tagging API by wbond · 7 years ago
  17. b1f5041 Fix a couple typos by Ryan Guest · 7 years ago
  18. 381a4da Ensure RSA OIDs have core.Null parameters across various structures by wbond · 8 years ago
  19. 88eb848 Fix a bug with keys.PrivateKeyInfo.wrap() and EC keys that could lead to side effects by wbond · 8 years ago
  20. 69d96d8 keys.PublicKeyInfo.bit_size and keys.PrivateKeyInfo.bit_size always round up to closest multiple of 8 now by wbond · 8 years ago
  21. c16859e Merge pull request #9 from psagers/master by wbond · 8 years ago
  22. 88ba5ee Add algos.KeyExchangeAlgorithm,/lgos.DHParameters, DH key support to keys.PublicKeyAlgorithm by wbond · 8 years ago
  23. bcb4229 Add .public_key_info accessor to PrivateKeyInfo. by Peter Sagerson · 8 years ago
  24. 0d9d833 Handle DSA certificates without parameters in keys.PublicKeyInfo.hash_algo by wbond · 9 years ago
  25. 5cf77ba Import order cleanup by wbond · 9 years ago
  26. a26664f Replace pylint with flake8, improve exception class specificity by wbond · 9 years ago
  27. 407e9e3 Removed set literals for Python 2.6 support by wbond · 9 years ago
  28. 7b2b9e2 Improved exception messages to include object module in addition to name by wbond · 9 years ago
  29. d913db5 Fix formatting of terms: ASN.1, X.509, RFC by wbond · 9 years ago
  30. e5a1c6e Add ParsableOctetString and ParsableOctetBitString by wbond · 9 years ago
  31. e3e4bcd Move asn1crypto.int to asn1crypto.util to prevent import name conflicts with int by wbond · 9 years ago
  32. b697173 Expose ECPoint loading/dumping functionality via keys module by wbond · 9 years ago
  33. e720d6e Fixed a bug computing the DSA public key when only the private key is available by wbond · 9 years ago
  34. 2b648f5 Exposed int_to_bytes() and int_from_bytes() as public functions by wbond · 9 years ago
  35. fe20ba7 Improve consistency of exception error messages by wbond · 9 years ago
  36. 66babf6 Add .sha1 and .sha256 properties to PublicKeyInfo that calculate over the DER-encoded contents of the public_key field by wbond · 9 years ago
  37. d6b8b2e Correct PublicKeyInfo to calculate the bit size of a DSA key from the parameter p and not the public key integer by wbond · 9 years ago
  38. c9fec24 Moved files to clean up main folder and make intent of performance optimization clear by wbond · 9 years ago
  39. b924d33 Added PublicKeyInfo.unwrap() for RSA keys by wbond · 9 years ago
  40. f4f176c Added .byte_size property to PublicKeyInfo and PrivateKeyInfo, fix .bit_size to not adjust to byte boundary by wbond · 9 years ago
  41. 680cba1 Changed key algo name from 'ecdsa' to just 'ec' since EC keys can be used for DH too by wbond · 9 years ago
  42. 216fd13 Fix .curve property docstrings by wbond · 9 years ago
  43. 1b00a59 Added the .hash_algo property to PublicKeyInfo and PrivateKeyInfo by wbond · 9 years ago
  44. 6b66ab5 Make __future__ imports consistent for better compat between 2 and 3 by wbond · 9 years ago
  45. ea25fc2 Added module and function docstrings by wbond · 9 years ago
  46. cd967c3 Fixed up __future__ imports by wbond · 9 years ago
  47. e7c390c Improved consistency of elliptic curve names by wbond · 9 years ago
  48. f937f48 Added .bit_size, .algorithm and .curve to PublicKeyInfo and PrivateKeyInfo by wbond · 9 years ago
  49. e95da2c Removed normal_tagging parameter for .dump(), added .untag() and .retag() by wbond · 9 years ago
  50. eb5eb6e Add the .public_key property to PrivateKeyInfo and cached values by wbond · 9 years ago
  51. eb02d76 Improved key fingerprinting for ECDSA by wbond · 9 years ago
  52. a4bfddd Fixed bugs in PrivateKeyInfo.wrap() by wbond · 9 years ago
  53. 488eac3 Added ability to compute the public key from a private key by wbond · 9 years ago
  54. 29f8149 Corrected data type of ECPrivateKey.public_key field by wbond · 9 years ago
  55. 8b59e05 Add .wrap() methods to PublicKeyInfo and PrivateKeyInfo by wbond · 9 years ago
  56. 59af99d Folded PKCS#5 algos into asn1crypto.algos by wbond · 9 years ago
  57. e91513e Initial version by wbond · 9 years ago