1. c80c68d add more skip check lambdas by Paul Kehrer · 11 years ago
  2. 90ae866 add hmac_supported method to backend. by Paul Kehrer · 11 years ago
  3. d5c351e Merge pull request #325 from public/unsupported-cipher-messages by Alex Gaynor · 11 years ago
  4. 35cb365 UnsupportedAlgorithm error messages for Ciphers by Alex Stapleton · 11 years ago
  5. 8eda240 Merge pull request #327 from reaperhulk/gcm-lower-limit-tag by Alex Gaynor · 11 years ago
  6. f7b4ede restrict gcm tags to a minimum of 4 bytes in length by Paul Kehrer · 11 years ago
  7. 9b7624e Merge pull request #326 from public/unsupported-hmac-hash by Alex Gaynor · 11 years ago
  8. 447d64f Raise UnsupportedAlgorithm when initing HMACs by Alex Stapleton · 11 years ago
  9. 4447e5a Merge pull request #324 from public/unsupported-hash by Alex Gaynor · 11 years ago
  10. 1b1327c Raise UnsupportedAlgorithm when initing Hash() by Alex Stapleton · 11 years ago
  11. 687d0f8 use both kwargs and named args in lambdas for clarity by Paul Kehrer · 11 years ago
  12. a620b7d don't modify params on parametrized tests by Paul Kehrer · 11 years ago
  13. 875b36b Merge branch 'master' into no-more-generator by Alex Gaynor · 11 years ago
  14. ffb7726 Merge pull request #308 from alex/rename-bindings by Donald Stufft · 11 years ago
  15. ca4a22b Merge pull request #283 from juliankrause/constant_time by Paul Kehrer · 11 years ago
  16. 41e5ab6 Also rename teh tests by Alex Gaynor · 11 years ago
  17. f8796b1 Renamed bindings to backends by Alex Gaynor · 11 years ago
  18. 4eec0bb pep8 by Alex Gaynor · 11 years ago
  19. 21919e2 Make this less invasive by Alex Gaynor · 11 years ago
  20. e5c5eec Clean up test generation to not use generators anymore and use parametrization by Alex Gaynor · 11 years ago
  21. b91221d raise ValueErrors when supplying/not supplying tags for GCM by Paul Kehrer · 11 years ago
  22. 9c3088f Beginnings of a constant_time module. by Julian Krause · 11 years ago
  23. 5a40896 create AEADEncryptionContext and DecryptionContext by Paul Kehrer · 11 years ago
  24. 0092c20 raise TypeError if you attempt to get the tag attribute on a decrypt by Paul Kehrer · 11 years ago
  25. bc31fb2 rename add_data to authenticate_additional_data for clarity (hopefully) by Paul Kehrer · 11 years ago
  26. a4bfc08 invalidtag exception for gcm by Paul Kehrer · 11 years ago
  27. ce9c611 enforce AEAD add_data before update by Paul Kehrer · 11 years ago
  28. 24316fd _AEADCipherContext refactor by Paul Kehrer · 11 years ago
  29. cc9ec98 rename NotFinalized exception to NotYetFinalized because alex is right by Paul Kehrer · 11 years ago
  30. 22e80cb GCM support by Paul Kehrer · 11 years ago
  31. b7c3845 Fixed this test. It was passing for the wrong reason. by Alex Gaynor · 11 years ago
  32. e60e1d7 Merge pull request #227 from dreid/explicit-backend-in-hazmat by Alex Gaynor · 11 years ago
  33. 6dc73a9 Fix pep8 by David Reid · 11 years ago
  34. 9a1b0c7 Use keyword argument forms everywhere. by David Reid · 11 years ago
  35. 87e113f Fixed branch coverage by Alex Gaynor · 11 years ago
  36. bae899a Change teh exception by Alex Gaynor · 11 years ago
  37. e247d0b Coverage by Alex Gaynor · 11 years ago
  38. 0ab3e44 Raise a correct error when content isn't padded correctly by Alex Gaynor · 11 years ago
  39. cf3ad61 Test that openssl is the default backend. by David Reid · 11 years ago
  40. 077e76e Explicit backend by David Reid · 11 years ago
  41. 62e96cb Merge pull request #268 from reaperhulk/nist-loader-section-fix by David Reid · 11 years ago
  42. 749ac5b simplify nist loader to completely ignore sections by Paul Kehrer · 11 years ago
  43. dcf62db Move interfaces.register to utils.register_interface in preparation for more interface modules. by David Reid · 11 years ago
  44. c985dbb modify nist loader to support multi-line GCM sections by Paul Kehrer · 11 years ago
  45. 0a394df Implement and document an interface for cipher algorithms by David Reid · 11 years ago
  46. 9489c76 Merge pull request #258 from alex/already-finalized by David Reid · 11 years ago
  47. 2cce618 Make HMAC methods raise AlreadyFinalized. by David Reid · 11 years ago
  48. 34511c6 Use AlreadyFinalized for symmetric ciphers by Alex Gaynor · 11 years ago
  49. c2cddd2 Merge pull request #253 from dreid/hash-raise-after-finalize by Alex Gaynor · 11 years ago
  50. 11e8cc7 Import AlreadyFinalized instead of exceptions. by David Reid · 11 years ago
  51. e5aa205 Also remove teh ciphers specific class by Alex Gaynor · 11 years ago
  52. 063a3a2 Remove the hash and hmac specific classes, now that the logic is the Context classes they don't really add value by Alex Gaynor · 11 years ago
  53. 152d6be raise an exception if you try to use a HashContext after finalize is called. by David Reid · 11 years ago
  54. fcd36a9 Merge branch 'master' into hmac-context-from-backend by David Reid · 11 years ago
  55. 906e195 Merge pull request #248 from dreid/hash-context-from-backend by Alex Gaynor · 11 years ago
  56. a43b669 GCM loader support by Paul Kehrer · 11 years ago
  57. 0bcbb41 Get a HashContext from the hmac backend like we do a CipherContext by David Reid · 11 years ago
  58. ee6f8ce Get a HashContext from the backend like we do a CipherContext by David Reid · 11 years ago
  59. 5e981fc Merge pull request #246 from alex/delete-tests by David Reid · 11 years ago
  60. 217e3b5 Fixed using copied hashes by Alex Gaynor · 11 years ago
  61. 41172ab flake8 by Alex Gaynor · 11 years ago
  62. c2f45d5 fixed bytes by Alex Gaynor · 11 years ago
  63. ab53bc5 simplify by Alex Gaynor · 11 years ago
  64. cee8d52 Simplify and make better hte tests for load_from_file by Alex Gaynor · 11 years ago
  65. f7f6a9f Remove separate file loaders and replace with one by Paul Kehrer · 11 years ago
  66. cf5fb33 Removed some tests that are now duplicates by Alex Gaynor · 11 years ago
  67. d3ce703 Ignore the sections of the NIST files by Alex Gaynor · 11 years ago
  68. 521c42d Simplify the code by doing the filtering earlier, rather than later by Alex Gaynor · 11 years ago
  69. 1aefe58 Merge pull request #214 from reaperhulk/arc4-support by David Reid · 11 years ago
  70. 715e85f Fixed two bugs in the PKCS7 padding where unpadding would accept bad inputs. by Alex Gaynor · 11 years ago
  71. a5f04c0 add ARC4 keysize testing by Paul Kehrer · 11 years ago
  72. 4da28c3 ARC4 support by Paul Kehrer · 11 years ago
  73. 21dde56 block cipher rename by Paul Kehrer · 11 years ago
  74. 86f98a0 79 cols by Alex Gaynor · 11 years ago
  75. 85be46d Replace assumption with some fakes by Alex Gaynor · 11 years ago
  76. 4bdb6b5 Merge branch 'master' into more-error-condition by Alex Gaynor · 11 years ago
  77. 79eaa7e Merge pull request #221 from alex/move-ffi-to-class by David Reid · 11 years ago
  78. b2fc8ac Rewrite this test to be good by Alex Gaynor · 11 years ago
  79. 876a5ee Merge pull request #213 from reaperhulk/arc4-vectors by David Reid · 11 years ago
  80. 3e252c6 coverage by Alex Gaynor · 11 years ago
  81. 7e262a6 typo fix by Alex Gaynor · 11 years ago
  82. 0857c3f Replaced an assertion in the OpenSSL backend with a proper exception by Alex Gaynor · 11 years ago
  83. 3949f11 Changed excpetion name based on feedback from dreid by Alex Gaynor · 11 years ago
  84. f1a3fc0 Document and implement the public API for when the backend doesn't support the requested algorithm by Alex Gaynor · 11 years ago
  85. 753ae19 Encode Reasons. by David Reid · 11 years ago
  86. f6d71ba add key 2 tests from rfc 6229 by Paul Kehrer · 11 years ago
  87. 8774477 TypeErrors are pretty cool, there are lot of reasons you get them. by David Reid · 11 years ago
  88. b0897d8 ARC4 vectors from RFC 6229 reformatted for NIST loader by Paul Kehrer · 11 years ago
  89. b864db1 Enforce HMAC taking an instance of HashAlgorithm by David Reid · 11 years ago
  90. e3960f6 Strip down the HMAC interface to be HashContext. by David Reid · 11 years ago
  91. ce46b89 Merge pull request #200 from dreid/primitive-hashes by Alex Gaynor · 11 years ago
  92. c94cdbc Merge pull request #202 from reaperhulk/cast128-cipher by Alex Gaynor · 11 years ago
  93. d09f3e1 add skipif checks for blowfish by Paul Kehrer · 11 years ago
  94. b47f6e1 CAST5 support + ECB vectors by Paul Kehrer · 11 years ago
  95. 0419e5e Merge pull request #201 from reaperhulk/bf-support by Alex Gaynor · 11 years ago
  96. bb0d3f0 Enforce that Hash takes a HashAlgorithm instance. by David Reid · 11 years ago
  97. c3d029f Fix python3 compat for the hash_test. by David Reid · 11 years ago
  98. fba0cd7 Merge branch 'master' into primitive-hashes by David Reid · 11 years ago
  99. 6b7610d add blowfish cipher key_size tests by Paul Kehrer · 11 years ago
  100. b7c46ef blowfish support + test vectors by Paul Kehrer · 11 years ago