Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Begin implementing symmetric encryption | Benjamin Barenblat | 2018-09-28 |
| | | | | Support RC4. Future commits will add support for more modern algorithms. | ||
* | Stop using newtypes for labeled arguments | Benjamin Barenblat | 2018-09-28 |
| | | | | It’s getting messy, so switch to a parameters datatype pattern. | ||
* | Rewrite tests for readability | Benjamin Barenblat | 2018-09-21 |
| | | | | | | Replace tables of tuples with simple function calls, and normalize argument order to have outputs to the right of inputs. Also factor out some common patterns. | ||
* | Enable error checking for HKDF computations | Benjamin Barenblat | 2018-09-04 |
| | |||
* | Codec.Crypto.HKDF: Implement `hkdf` convenience function | Benjamin Barenblat | 2018-08-23 |
| | |||
* | Codec.Crypto.HKDF: Implement `expand` | Benjamin Barenblat | 2018-08-02 |
| | |||
* | Codec.Crypto.HKDF: Add test 7 from RFC 5869 | Benjamin Barenblat | 2018-08-02 |
| | |||
* | Begin implementing HKDF | Benjamin Barenblat | 2018-07-31 |
Implement the `extract` phase of HKDF. |