summaryrefslogtreecommitdiff
path: root/include
Commit message (Collapse)AuthorAgeFilesLines
* Break include dependency on plop.hrlMagnus Ahltorp2014-10-241-37/+0
|
* Clean up the plop interface, in preparation for a new db implementation.Linus Nordberg2014-09-291-36/+0
|
* Make dialyzer happier.Linus Nordberg2014-09-101-2/+2
| | | | Protocol version can be 0.
* Add licensing information.Linus Nordberg2014-06-091-1/+4
|
* Add get/1; remove debug printouts; formatting.Linus Nordberg2014-06-041-1/+1
|
* Change default protocol version from 1 to 0.Linus Nordberg2014-05-191-1/+3
| | | | | | RFC6962 "v1" is 0, not 1. Also, use a define and not a literal. Also also, move the define to plop.hrl.
* Encode signatures properly.Linus Nordberg2014-05-121-2/+19
|
* Define #sth{} and have sth() return those.Linus Nordberg2014-05-051-0/+8
|
* Make #spt_signed{} private.Linus Nordberg2014-05-051-11/+0
|
* Rename #sth -> #sth_signed and make it private.Linus Nordberg2014-05-051-12/+0
|
* Rename spt_on_wire -> spt.Linus Nordberg2014-05-041-2/+2
|
* Sign using ECDSA and fix a couple bugs.Linus Nordberg2014-05-021-10/+11
| | | | | | | | | | | Revive the plop_entry and hash over that instead of the full MTL, for the db hash. We don't want the timestamp in that hash! Use ECDSA instead of RSA for signing stuff. That's what Google does and we want to use their test suites. An annoyance with DSA is that the signature isn't deterministic. Testing just became less easy. Fix db:find() now that the hash is no longer the primary key.
* Move some records out of public header file. Improve db initialisation some.Linus Nordberg2014-05-011-24/+10
| | | | Wait for mnesia tables in init() and make the init-functions do some more.
* Turn it all into an application.Linus Nordberg2014-04-291-0/+79
Warning: Rough edges.