aboutsummaryrefslogtreecommitdiffstats
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | | | | Slightly reorganize and cleanuip the backend docsAlex Gaynor2013-12-242-14/+14
| | | | | | | | | | |
| * | | | | | | | | | RephraseAlex Gaynor2013-12-241-2/+3
| | | | | | | | | | |
| * | | | | | | | | | TypoAlex Gaynor2013-12-241-1/+1
| | | | | | | | | | |
| * | | | | | | | | | Note abotu development versionsAlex Gaynor2013-12-241-0/+2
| | | | | | | | | | |
| * | | | | | | | | | Forgotten fileAlex Gaynor2013-12-241-0/+48
| | | | | | | | | | |
| * | | | | | | | | | Document our API stability policy. Fixes #312Alex Gaynor2013-12-242-1/+1
| | | | | | | | | | |
| * | | | | | | | | | fix erroneous indent and add abstractmethod to HMACBackendPaul Kehrer2013-12-231-2/+2
| | | | | | | | | | |
| * | | | | | | | | | add hmac_supported method to backend.Paul Kehrer2013-12-231-2/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously we were implicitly assuming that if a hash was supported then its hmac equivalent was as well.
| * | | | | | | | | | Merge pull request #325 from public/unsupported-cipher-messagesAlex Gaynor2013-12-221-1/+1
| |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | UnsupportedAlgorithm error messages for Ciphers
| | * | | | | | | | | | UnsupportedAlgorithm error messages for CiphersAlex Stapleton2013-12-221-1/+1
| | | | | | | | | | | |
| * | | | | | | | | | | Merge pull request #329 from alex/reccomend-versioningPaul Kehrer2013-12-221-0/+4
| |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Recommend that recipes include a version
| | * | | | | | | | | | | Recommend that recipes include a versionAlex Gaynor2013-12-211-0/+4
| | | | | | | | | | | | |
| * | | | | | | | | | | | English, how does it work?Alex Gaynor2013-12-211-1/+1
| | | | | | | | | | | | |
| * | | | | | | | | | | | A handful of cleanups and rewordings to the docsAlex Gaynor2013-12-211-8/+8
| |/ / / / / / / / / / /
| * | | | | | | | | | | Merge pull request #327 from reaperhulk/gcm-lower-limit-tagAlex Gaynor2013-12-211-0/+11
| |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Restrict GCM tag length to 4+ bytes
| | * | | | | | | | | | | a few more doc changes to gcm tag infoPaul Kehrer2013-12-211-2/+3
| | | | | | | | | | | | |
| | * | | | | | | | | | | prose updates for GCM tagPaul Kehrer2013-12-211-4/+6
| | | | | | | | | | | | |
| | * | | | | | | | | | | doc updatesPaul Kehrer2013-12-211-2/+5
| | | | | | | | | | | | |
| | * | | | | | | | | | | add note regarding not truncating tagsPaul Kehrer2013-12-211-0/+5
| | | | | | | | | | | | |
| * | | | | | | | | | | | Merge pull request #326 from public/unsupported-hmac-hashAlex Gaynor2013-12-211-0/+2
| |\ \ \ \ \ \ \ \ \ \ \ \ | | |/ / / / / / / / / / / | |/| | | | | | | | | | | Raise UnsupportedAlgorithm when initing HMACs
| | * | | | | | | | | | | Raise UnsupportedAlgorithm when initing HMACsAlex Stapleton2013-12-211-0/+2
| | |/ / / / / / / / / /
| * / / / / / / / / / / Raise UnsupportedAlgorithm when initing Hash()Alex Stapleton2013-12-211-0/+3
| |/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of just an AssertionError.
| * | | | | | | | | | BlockCipherAlgorithm because we should document block_size and ARC4 ↵David Reid2013-12-171-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | shouldn't need block_size = 1.
* | | | | | | | | | | Clean up documentation and naming.Julian Krause2013-12-253-6/+14
| | | | | | | | | | |
* | | | | | | | | | | Add verify function to hmac and hashes.Julian Krause2013-12-172-0/+14
|/ / / / / / / / / /
* | | | | | | | | | A foolish consistency is a really cool idea -- Samuel ClemensAlex Gaynor2013-12-161-1/+0
| | | | | | | | | |
* | | | | | | | | | Be consistentAlex Gaynor2013-12-161-2/+2
| | | | | | | | | |
* | | | | | | | | | DOn't assume people know that contractionAlex Gaynor2013-12-161-2/+2
| | | | | | | | | |
* | | | | | | | | | Rework the index to give people a better lay of the landAlex Gaynor2013-12-161-6/+29
| |_|/ / / / / / / |/| | | | | | | |
* | | | | | | | | Merge pull request #308 from alex/rename-bindingsDonald Stufft2013-12-159-16/+16
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Renamed bindings to backends
| * | | | | | | | | Renamed bindings to backendsAlex Gaynor2013-12-139-16/+16
| | | | | | | | | |
* | | | | | | | | | Merge pull request #307 from alex/prefer-doctestPaul Kehrer2013-12-141-2/+4
|\ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|/ |/| | | | | | | | | Prefer executable code examples
| * | | | | | | | | Need to include the importsAlex Gaynor2013-12-131-0/+2
| | | | | | | | | |
| * | | | | | | | | Prefer executable code examplesAlex Gaynor2013-12-131-2/+2
| |/ / / / / / / /
* | | | | | | | | Merge pull request #283 from juliankrause/constant_timePaul Kehrer2013-12-143-1/+39
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | Beginnings of a constant_time module.
| * | | | | | | | Remove plural.Julian Krause2013-12-131-1/+1
| | | | | | | | |
| * | | | | | | | Update documentation again to make it clearer what this is for. Moved to ↵Julian Krause2013-12-122-8/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | using Coda Hale's post.
| * | | | | | | | Improve documentation.Julian Krause2013-12-052-4/+15
| | | | | | | | |
| * | | | | | | | Beginnings of a constant_time module.Julian Krause2013-12-042-0/+25
| | | | | | | | |
* | | | | | | | | Document the need for test coverageAlex Gaynor2013-12-131-0/+1
| | | | | | | | |
* | | | | | | | | Merge pull request #305 from alex/show-the-backendPaul Kehrer2013-12-131-5/+6
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Always show where a baackend comes form in the docs
| * | | | | | | | | Always show where a baackend comes form in the docsAlex Gaynor2013-12-131-5/+6
| | | | | | | | | |
* | | | | | | | | | This warning doesn't add much value anymoreAlex Gaynor2013-12-131-4/+0
|/ / / / / / / / /
* | | | | | | | | Merge pull request #302 from alex/beef-up-the-indexPaul Kehrer2013-12-121-3/+16
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | More info in teh index
| * | | | | | | | | More info in teh indexAlex Gaynor2013-12-121-3/+16
| | | | | | | | | |
* | | | | | | | | | Fixed a mis-spelled wordAlex Gaynor2013-12-121-1/+1
|/ / / / / / / / /
* | | | | | | | | Several policy reccomendations for API designAlex Gaynor2013-12-121-0/+34
| | | | | | | | |
* | | | | | | | | Fixed headers in docsAlex Gaynor2013-12-121-3/+3
| | | | | | | | |
* | | | | | | | | Use the HTTPS verion of the link to cffiAlex Gaynor2013-12-121-1/+1
| | | | | | | | |
* | | | | | | | | Improved the docs -- more glossary entries, more advice for writing docsAlex Gaynor2013-12-082-0/+14
| | | | | | | | |