1. 0b3ff3b DSA signing support (this is mostly skeuomorf's work, credit to him) by Paul Kehrer · 11 years ago
  2. f58d1ab add check to ensure only invalid ASN1 gives InvalidSignature in DSA by Paul Kehrer · 11 years ago
  3. 21babbb updates for review feedback by Paul Kehrer · 11 years ago
  4. 7c5f131 move use after finalize to its own test by Paul Kehrer · 11 years ago
  5. 3cbe11a remove hash check in verifier as this isn't a proper restriction by Paul Kehrer · 11 years ago
  6. ddc2221 restructure some tests, add skip, use der_encode_dsa_signature by Paul Kehrer · 11 years ago
  7. 244d5fd fix pep8 violation by Paul Kehrer · 11 years ago
  8. 643b314 Add verification tests by Mohammed Attia · 11 years ago
  9. be8ce55 negative test by Paul Kehrer · 11 years ago
  10. a409ae1 we should use der rather than ber by Paul Kehrer · 11 years ago
  11. 14951f4 rename dss_sig_value -> der_encode_dsa_signature by Paul Kehrer · 11 years ago
  12. d0dc6a3 make DSSSigValue class private by Paul Kehrer · 11 years ago
  13. d3e3df9 use pyasn1 for creating the dss-sig-value structure by Paul Kehrer · 11 years ago
  14. 3fc686e dss_sig_value: Pure python conversion of (r, s) to byte stream by Paul Kehrer · 11 years ago
  15. 2912cc7 Don't import the exceptions module directly. by Alex Gaynor · 11 years ago
  16. db1524b Merge pull request #962 from reaperhulk/rsa-enc by Alex Gaynor · 11 years ago
  17. b30402c Merge pull request #972 from public/padding-docs by Paul Kehrer · 11 years ago
  18. 575a7f5 Use AlreadyFinalized not ValueError by Alex Stapleton · 11 years ago
  19. 458c09b Rename OpenSSLSerializationBackend by Alex Stapleton · 11 years ago
  20. 462bd60 Fix some typos. by Alex Gaynor · 11 years ago
  21. 857c0e9 update some decryption tests by Paul Kehrer · 11 years ago
  22. e86d882 move ct length check into decrypt function, address review comments by Paul Kehrer · 11 years ago
  23. c83e6ef another style fix in the rsa tests that I missed last time... by Paul Kehrer · 11 years ago
  24. 4ce810e improve style in test, update docs for rsa encryption review by Paul Kehrer · 11 years ago
  25. 4e602f3 RSA encryption support by Paul Kehrer · 11 years ago
  26. 4492562 No more comma seperated string strings by Alex Gaynor · 11 years ago
  27. ff2b8ce Merge pull request #949 from reaperhulk/rsa-oaep-decrypt by Alex Gaynor · 11 years ago
  28. 5186d69 OAEP support for RSA decryption by Paul Kehrer · 11 years ago
  29. bafbc33 Added _REASON by Ayrx · 11 years ago
  30. 771fc77 Added tests for multibackend by Ayrx · 11 years ago
  31. 8a312c2 Merge pull request #952 from reaperhulk/fix-missing-coverage by Alex Stapleton · 11 years ago
  32. 9f1ece7 Merge pull request #953 from Ayrx/fix-cmac-missing-coverage by Paul Kehrer · 11 years ago
  33. f09a3d6 Added missing tests for 100% coverage by Ayrx · 11 years ago
  34. 7ef2f8f fix a coverage miss in the dsa sig vector loader by Paul Kehrer · 11 years ago
  35. 3c9e158 Modify DSA SigVer loader to be able to load SigGen vectors by Mohammed Attia · 11 years ago
  36. bafc26f Merge pull request #946 from skeuomorf/dsa-sigver-loader by Alex Stapleton · 11 years ago
  37. 0fb5d85 Add DSA SigVer vectors loader by Mohammed Attia · 11 years ago
  38. b5236fe Merge pull request #931 from Ayrx/cmac-implementation by Alex Stapleton · 11 years ago
  39. a33dd28 Merge pull request #944 from reaperhulk/fix-773 by Alex Stapleton · 11 years ago
  40. 9a97cb9 Added test skip for test_copy_with_backend() by Ayrx · 11 years ago
  41. 3881917 Added more copy() tests by Ayrx · 11 years ago
  42. 3f69511 Fix pep8 errors by Ayrx · 11 years ago
  43. 458cfd5 Changed stub keys and ivs to use null bytes by Ayrx · 11 years ago
  44. 2124324 Fixed pep8 error by Ayrx · 11 years ago
  45. 78f6f33 Updated tests by Ayrx · 11 years ago
  46. b5bb065 Added CMAC tests by Ayrx · 11 years ago
  47. 8e76439 more key length checks, docs update by Paul Kehrer · 11 years ago
  48. 8ab7a36 remove InvalidDecryption and replace with ValueError by Paul Kehrer · 11 years ago
  49. 7bdcdc1 remove OAEP decryption to simplify review by Paul Kehrer · 11 years ago
  50. 34ce338 cover a missing line by Paul Kehrer · 11 years ago
  51. 67feca0 more testing for rsa decrypt by Paul Kehrer · 11 years ago
  52. 9a32ad6 test should check for the right exception by Paul Kehrer · 11 years ago
  53. af9a2cc add InvalidDecryption exception, check for ct > key size by Paul Kehrer · 11 years ago
  54. 4c0a374 docs, tests, general huge improvements to RSA decryption by Paul Kehrer · 11 years ago
  55. 16b953a prelim OAEP and PKCS1v15 for openssl 1.0.0+ and 0.9.8. decryption only by Paul Kehrer · 11 years ago
  56. 707b008 Fix pep8 errors for latest import linter by Alex Stapleton · 11 years ago
  57. 4cf3e1d Fix import order by Alex Stapleton · 11 years ago
  58. 704f2f3 move some comments by Paul Kehrer · 11 years ago
  59. 3871762 fix SSL_OP_ALL being unusable on Windows due to long being 32-bit signed by Paul Kehrer · 11 years ago
  60. b8ba9e0 Merge pull request #935 from public/rsa-crt by Paul Kehrer · 11 years ago
  61. d82c141 Merge pull request #938 from public/bn-inplace by Paul Kehrer · 11 years ago
  62. 5823e85 Inplace mode for _int_to_bn by Alex Stapleton · 11 years ago
  63. 95c30fb some checks for PKCS1 keys being too small for the payload to be signed by Paul Kehrer · 11 years ago
  64. 99eff9f Merge pull request #939 from public/ecdsa-sigver-rsp by Paul Kehrer · 11 years ago
  65. 44fe82d This one curve is still named wrong by Alex Stapleton · 11 years ago
  66. 6f72949 SigVer.rsp loading by Alex Stapleton · 11 years ago
  67. 39e300f Fix bad NIST <-> SECG curve name map by Alex Stapleton · 11 years ago
  68. 5a79ee4 Utility methods for RSA CRT params by Alex Stapleton · 11 years ago
  69. 4e6813d move some rsa tests to a new class by Paul Kehrer · 11 years ago
  70. cd61833 Merge pull request #913 from public/ecdsa-signature-vector-loader by Paul Kehrer · 11 years ago
  71. 24a2f07 Missed an unhexlify by Alex Stapleton · 11 years ago
  72. 48e0c20 added unused NIST test files for FIPS 186-2 RSA (PKCS#1 v1.5) to test cases by Thomas Fenzl · 11 years ago
  73. fb812d6 Use binascii.hexlify instead of just hexlify by Alex Stapleton · 11 years ago
  74. c387cf7 ECDSA SigGen.{txt,rsp} vector loader by Alex Stapleton · 11 years ago
  75. b1a610b Merge pull request #911 from public/ecdsa-vector-loader by Paul Kehrer · 11 years ago
  76. cf04860 ECDSA vector loader by Alex Stapleton · 11 years ago
  77. 7e914c9 add SEED docs, tests, small fixes by Paul Kehrer · 11 years ago
  78. 6b090e8 pep8, irony by Alex Gaynor · 11 years ago
  79. 07c4dcc Some cleanups to imports by Alex Gaynor · 11 years ago
  80. 6abaf40 Merge pull request #739 from skeuomorf/dsa-backend by Paul Kehrer · 11 years ago
  81. 29474ac Add docs for DSA parameters and key generation by Mohammed Attia · 11 years ago
  82. 97c27c6 Add DSABackend by Mohammed Attia · 11 years ago
  83. 9ac7c1d Add tests for DSA parameters and key generation by Mohammed Attia · 11 years ago
  84. f877868 DummyMGF needs a _salt_length too by Paul Kehrer · 11 years ago
  85. dc378d1 move DeprecatedIn04 to utils, some kwargs changes by Paul Kehrer · 11 years ago
  86. c9a8793 address review comments by Paul Kehrer · 11 years ago
  87. ba98745 move salt_length from MGF1 to PSS and start deprecation cycle by Paul Kehrer · 11 years ago
  88. df16f4a fix pep8 errors by Alex Stapleton · 11 years ago
  89. 976945d Add _Reasons.UNSUPPORTED_PUBLIC_KEY_ALGORITHM by Alex Stapleton · 11 years ago
  90. 6216357 Add _Reasons.UNSUPPORTED_MGF by Alex Stapleton · 11 years ago
  91. 230457a Add DSA private key api, docs and tests by Mohammed Attia · 11 years ago
  92. 99b0b1f Merge pull request #870 from skeuomorf/dsa-public-key by Paul Kehrer · 11 years ago
  93. ed63a79 Add test skip if interfaces.Mode is not supported by Ayrx · 11 years ago
  94. 5b50613 Add DSA public key api, docs and tests by Mohammed Attia · 11 years ago
  95. 24171cc Add DSA parameters api, docs and tests by Mohammed Attia · 11 years ago
  96. 3fe9150 expand pkcs1 loader to support OAEP as well by Paul Kehrer · 11 years ago
  97. 85a791f Pain the bikeshed a different colour by Alex Stapleton · 11 years ago
  98. 5e4c8c3 Fixes to @alex's comments by Alex Stapleton · 11 years ago
  99. d80195e Update tests by Alex Stapleton · 11 years ago
  100. 4c1401a Update tests and raise sites by Alex Stapleton · 11 years ago