aboutsummaryrefslogtreecommitdiff
path: root/src/BTLS/Types.hs
Commit message (Collapse)AuthorAge
* Make NID-to-string routine saferGravatar Benjamin Barenblat2018-09-28
| | | | | Eliminate the possibility of a null pointer dereference by converting short names to `Maybe String`.
* Stop using newtypes for labeled argumentsGravatar Benjamin Barenblat2018-09-28
| | | | It’s getting messy, so switch to a parameters datatype pattern.
* Give `Algorithm` a `Show` instanceGravatar Benjamin Barenblat2018-09-25
|
* Start using base16-bytestring in btlsGravatar Benjamin Barenblat2018-09-21
| | | | | We’re already using it in tests, so eliminate some hand-rolled hexification code.
* Documentation improvementsGravatar Benjamin Barenblat2018-09-04
|
* Eliminate Data.Digest.InternalGravatar Benjamin Barenblat2018-08-02
| | | | | | Move Data.Digest.Internal’s functions and types into more appropriate modules. There’s now a single BTLS hierarchy that contains all internal modules for the project.
* Begin cleaning up internal modulesGravatar Benjamin Barenblat2018-08-02
Clarify the division between internal and external modules in the source by consolidating all internal modules except Data.Digest.Internal into a flatter BTLS directory.