1. 9949702 Merge pull request #112 from reaperhulk/block-cipher-decrypt by David Reid · 11 years ago
  2. b2c94fd verify that encryptor/decryptor returns CipherContext compliant interface by Paul Kehrer · 11 years ago
  3. ab73ed9 Merge pull request #108 from alex/triple-des by Donald Stufft · 11 years ago
  4. f6cf956 more docs by Paul Kehrer · 11 years ago
  5. fbcc564 grammar by Alex Gaynor · 11 years ago
  6. 077c50b Merge branch 'master' into triple-des by Alex Gaynor · 11 years ago
  7. f1903e9 fix doc test failure by Paul Kehrer · 11 years ago
  8. 2647636 Merge pull request #162 from alex/document-constructor by Hynek Schlawack · 11 years ago
  9. 2f63b77 exclude abstractmethod decorator from coverage by Paul Kehrer · 11 years ago
  10. d1afe39 fix typo and show result of decryption in docs by Paul Kehrer · 11 years ago
  11. 5399fd0 Create CipherContext interface & document it by Paul Kehrer · 11 years ago
  12. f3b06cd Document this parameter to the constructor by Alex Gaynor · 11 years ago
  13. 7b3c1b9 Merge branch 'master' into triple-des by Alex Gaynor · 11 years ago
  14. e524d73 Merge pull request #147 from reaperhulk/hash-improvements by Alex Gaynor · 11 years ago
  15. f342178 Merge pull request #161 from alex/flake8 by David Reid · 11 years ago
  16. afdddca Enable all the flake8 by Alex Gaynor · 11 years ago
  17. 49b15bf Merge pull request #160 from alex/lint-setup by David Reid · 11 years ago
  18. 1d80538 Also ignore eggs by Alex Gaynor · 11 years ago
  19. 967c03b Better way by Alex Gaynor · 11 years ago
  20. b58865b Lint setup.py by Alex Gaynor · 11 years ago
  21. b59377d remove unneeded import...whoops by Paul Kehrer · 11 years ago
  22. 3e0895c rename variables in encrypt/decrypt example by Paul Kehrer · 11 years ago
  23. fd56c5f remove enum requirement now that we're not using enum by Paul Kehrer · 11 years ago
  24. 9f7ea6e Merge branch 'master' into block-cipher-decrypt by Paul Kehrer · 11 years ago
  25. f988a9e This is a frozenset these days by Alex Gaynor · 11 years ago
  26. 7a3338b Tests for all the keysizes by Alex Gaynor · 11 years ago
  27. a4ce161 Removed the interleaved ones by Alex Gaynor · 11 years ago
  28. 8e251e7 cfb tests by Alex Gaynor · 11 years ago
  29. 1db9319 Fuck by Alex Gaynor · 11 years ago
  30. e218856 py3k by Alex Gaynor · 11 years ago
  31. df146c5 These are also interleaved by Alex Gaynor · 11 years ago
  32. a3106b1 Remove this, it's not really CBC by Alex Gaynor · 11 years ago
  33. 8af0390 fix by Alex Gaynor · 11 years ago
  34. d472862 fixes by Alex Gaynor · 11 years ago
  35. 804e981 KAT tests for 3des ofb by Alex Gaynor · 11 years ago
  36. 58dbc67 No need for another test function by Alex Gaynor · 11 years ago
  37. dc42400 TripleDES OFB MMT tests by Alex Gaynor · 11 years ago
  38. 19642a1 pep8ification, stub classes for OFB and CFB by Alex Gaynor · 11 years ago
  39. 5e04ba6 Initial working state by Alex Gaynor · 11 years ago
  40. 653463f address review comments by Paul Kehrer · 11 years ago
  41. 9f79164 Merge branch 'master' into triple-des by Alex Gaynor · 11 years ago
  42. c160079 Merge pull request #109 from alex/refactor-cipher-names by Donald Stufft · 11 years ago
  43. 6f874ff Merge branch 'master' into refactor-cipher-names by Alex Gaynor · 11 years ago
  44. e98867a further simplify context objects by Paul Kehrer · 11 years ago
  45. afe8a89 modified approach to encryption/decryption contexts by Paul Kehrer · 11 years ago
  46. dec09fc update docs to reflect new encryptor API by Paul Kehrer · 11 years ago
  47. 620c2ae block cipher decryption support by Paul Kehrer · 11 years ago
  48. 71ed449 Merge pull request #156 from reaperhulk/openssl-hmac-bindings by Alex Gaynor · 11 years ago
  49. 02cd1fc simplify HMAC_CTX typedef by Paul Kehrer · 11 years ago
  50. c5833bf Add HMAC bindings by Paul Kehrer · 11 years ago
  51. 49360dd HMAC test vectors from RFC 2202, 2286, and 4231 by Paul Kehrer · 11 years ago
  52. e588209 Merge pull request #146 from dstufft/use-cryptography-io by Alex Gaynor · 11 years ago
  53. 8635497 Merge pull request #149 from alex/docs-fixups by Donald Stufft · 11 years ago
  54. a337924 Merge pull request #150 from alex/cleanup-hash-ctx by Donald Stufft · 11 years ago
  55. 7ef1688 Merge pull request #152 from reaperhulk/openssl-evp-cipher-new-free by Alex Gaynor · 11 years ago
  56. d873f0f use _new and _free on EVP_CIPHER_CTX rather than initing manually by Paul Kehrer · 11 years ago
  57. fb84cad Use more precise assertions by Alex Gaynor · 11 years ago
  58. 56ac648 Cleanup hash ctxs when we're done with them by Alex Gaynor · 11 years ago
  59. ddc62f0 Small fixups for the docs by Alex Gaynor · 11 years ago
  60. d4cb34d Allow data to be passed in the constructor & reject unicode ala hashlib by Paul Kehrer · 11 years ago
  61. 7abcb9c Merge pull request #130 from reaperhulk/hash-saga-thrilling-conclusion-md5 by Donald Stufft · 11 years ago
  62. 746815b update method signature for hash update to be consistent with the docs by Paul Kehrer · 11 years ago
  63. 6b9ddeb fix doc formatting and rename update param to "data" by Paul Kehrer · 11 years ago
  64. 505491b Simplify documentation by Matthew Iversen · 11 years ago
  65. 9cd2ae4 change basehash into an abc by Paul Kehrer · 11 years ago
  66. 36e7d0d MD5 support + documentation for all hashes by Paul Kehrer · 11 years ago
  67. 1caf8ab Merge pull request #128 from reaperhulk/hash-saga-whirlpool by Donald Stufft · 11 years ago
  68. bf9df01 Use the https://cryptography.io domain name by Donald Stufft · 11 years ago
  69. 9f9f550 Merge pull request #145 from reaperhulk/struct-style by Alex Gaynor · 11 years ago
  70. 6d0d294 Merge pull request #144 from alex/security-doc by Donald Stufft · 11 years ago
  71. 3ed80ba add struct style info to docs by Paul Kehrer · 11 years ago
  72. 99b69d9 Start better documenting our security procedure by Alex Gaynor · 11 years ago
  73. a444455 Merge pull request #143 from dstufft/require-100-coverage by Alex Gaynor · 11 years ago
  74. 2acd77a Only execute only_if if we need to by Donald Stufft · 11 years ago
  75. 3359d7e Test what happens when an invalid line is in the cryptrec vectors by Donald Stufft · 11 years ago
  76. 34b6ae7 Fail tests if our coverage is less than 100% by Donald Stufft · 11 years ago
  77. 107b74e Merge pull request #141 from reaperhulk/block-cipher-buffer-sizing by Alex Gaynor · 11 years ago
  78. c3a2b42 Unaligned block encryption test by Paul Kehrer · 11 years ago
  79. 3b87290 fix #140. properly size char buffer for encryption by Paul Kehrer · 11 years ago
  80. c113b32 add a macro to reduce method calls in api.py by Paul Kehrer · 11 years ago
  81. e16bdfd Merge pull request #131 from cyli/x509v3 by Alex Gaynor · 11 years ago
  82. afc9c32 Add some functions to the macros section since they changed from non-const to const between openssl versions by cyli · 11 years ago
  83. 75db748 Merge pull request #136 from cyli/pem by Alex Gaynor · 11 years ago
  84. de372c3 Do not redefine EVP_CIPHER by cyli · 11 years ago
  85. 9201169 Add initial bindings by cyli · 11 years ago
  86. 37e3056 Move macro things to macros by cyli · 11 years ago
  87. 91d2369 Add bindings for x509v3 by cyli · 11 years ago
  88. 867bba9 Merge pull request #138 from dreid/clang-builds by Alex Gaynor · 11 years ago
  89. 1ceee69 Merge pull request #139 from alex/pkcs12-fix by David Reid · 11 years ago
  90. bf96bf9 Move these to macros, the exact type of these functions changes by deifne by Alex Gaynor · 11 years ago
  91. 3ff9b37 Add clang to the build matrix. by David Reid · 11 years ago
  92. 64fdae0 Merge pull request #132 from alex/bind-pkcs12 by Donald Stufft · 11 years ago
  93. 00d9856 Merge pull request #137 from alex/alphabetize by Donald Stufft · 11 years ago
  94. 107a14b Alphebetize these things. by Alex Gaynor · 11 years ago
  95. b4b5455 Merge pull request #135 from cyli/nid by Alex Gaynor · 11 years ago
  96. 2984b3f Merge branch 'master' into bind-pkcs12 by Alex Gaynor · 11 years ago
  97. c21f968 Merge pull request #126 from cyli/x509 by Alex Gaynor · 11 years ago
  98. 175ba67 Add bindings for nid by cyli · 11 years ago
  99. 01451eb One more macro with a confusing error by cyli · 11 years ago
  100. 80b95ed Move macros to macros, and some functions that have changed between versions to macros by cyli · 11 years ago