summaryrefslogtreecommitdiff
path: root/src/plop.erl
Commit message (Collapse)AuthorAgeFilesLines
* Added authenticationMagnus Ahltorp2015-02-271-6/+38
|
* Use hackney instead of inets:httpcMagnus Ahltorp2015-02-271-6/+25
|
* plop:consistency: Correct off-by-one errorMagnus Ahltorp2015-02-271-3/+3
|
* plop.erl: better debug messagesMagnus Ahltorp2015-02-271-15/+37
|
* Deserialize all of plopMagnus Ahltorp2015-02-271-36/+44
|
* Move db size check from db.erl to plop.erl to allow reads past db size.Magnus Ahltorp2014-11-191-1/+2
|
* Move plop:add out of gen_serverMagnus Ahltorp2014-11-191-91/+52
|
* Move signing code to sign moduleMagnus Ahltorp2014-11-191-113/+21
|
* Remove support for internal mergeMagnus Ahltorp2014-11-191-3/+3
|
* Invoke gen_server:call/2 via stacktrace:call/2.stacktraceLinus Nordberg2014-11-041-11/+12
| | | | stacktrace:call() logs an error if the gen_server:call() throws timeout.
* Optimize db:get_by_indices by not fetching entry and implementing index:getrangeMagnus Ahltorp2014-10-251-1/+6
|
* Move internal HTTP APIs to mochiweb. Stop using jiffy.Magnus Ahltorp2014-10-251-9/+10
|
* Added lager for loggingMagnus Ahltorp2014-10-241-0/+4
|
* Fix bug getting storage_nodes configuration variableMagnus Ahltorp2014-10-241-2/+1
|
* Make frontend send entries to storage nodes if storage_nodes configuration ↵Magnus Ahltorp2014-10-241-6/+127
| | | | is set
* Break include dependency on plop.hrlMagnus Ahltorp2014-10-241-6/+2
|
* Use raw file storageMagnus Ahltorp2014-09-281-1/+1
|
* Fix api problemsMagnus Ahltorp2014-09-271-2/+2
|
* Fix api problemsMagnus Ahltorp2014-09-271-5/+12
|
* wipplop-if-cleanupLinus Nordberg2014-09-271-211/+72
|
* Sign the correct things in SPT's.Linus Nordberg2014-09-251-5/+8
| | | | | First, the log entry (i.e. leaf hash) must be a TLS vector. Second, an empty extension (as a TLS vector), must be included.
* Use correct LogID.Linus Nordberg2014-09-251-5/+4
|
* Rename inclusion_and_more/2.Linus Nordberg2014-09-251-6/+6
|
* Actually serialise TLS vectors according to specMagnus Ahltorp2014-09-231-2/+8
|
* Store and retrieve extra-data in/from db.Linus Nordberg2014-09-201-20/+26
| | | | Also, add more specs to db.
* Fix crash in inclusion() and add inclusion-and-leaf().Linus Nordberg2014-09-191-6/+22
|
* Hash over the MerkleTreeLeaf.Linus Nordberg2014-09-191-10/+6
| | | | | Hash over correct timestamp when adding submitted entries. Hash over the full #mtl{} when adding entries from db.
* Add field 'mtlhash' to the database, for get-proof-by-hash.Linus Nordberg2014-09-181-11/+13
| | | | | | | | | | Also, in db: Add field 'mtlhash' to record 'plop'. Rename 'hash' -> 'entryhash'. Add leaf_hash(), calculating a leaf hash from data. Fix a bug where print_tree() print half a byte of the hashes. Rename tree_hash() -> root(). Closes CATLFISH-3.
* Have inclusion/2 return Index too.newerhtLinus Nordberg2014-09-151-5/+5
|
* Add inclusion/2.Linus Nordberg2014-09-151-1/+11
|
* Make two comments @doc.Linus Nordberg2014-09-151-3/+2
|
* Add consistency/2.Linus Nordberg2014-09-151-5/+6
|
* Adjust plop for changes in ht.Linus Nordberg2014-09-141-43/+25
|
* Make dialyzer happier.Linus Nordberg2014-09-101-2/+2
| | | | | Make sure test function returns something. I would imagine that eunit.hrl should take care of this but haven't investigated.
* Fix missing spec change.Linus Nordberg2014-09-101-1/+1
|
* Fix (unused) test function.Linus Nordberg2014-09-101-1/+1
|
* Make dialyzer happier.Linus Nordberg2014-09-101-2/+2
| | | | Protocol version can be 0.
* New hash tree implementation, using an ETS table for the hashes.Linus Nordberg2014-09-091-15/+16
| | | | | Also, add an untested entry storage implementation, using multiple DETS tables.
* Add licensing information.Linus Nordberg2014-06-091-0/+3
|
* Make serialise/1 return a binary.Linus Nordberg2014-06-041-45/+36
| | | | Lists became nested.
* plop.hrl has finally moved into include/.Linus Nordberg2014-06-041-1/+1
|
* Add get/1; remove debug printouts; formatting.Linus Nordberg2014-06-041-14/+23
|
* Fix add_more_test/0 and rename it.Linus Nordberg2014-06-021-6/+8
| | | | | One probably don't want it to be run automatically since it bloats the db.
* Test adding 200 3kB entries.Linus Nordberg2014-05-291-0/+7
|
* Add db:size/0 and some error checking.Linus Nordberg2014-05-291-6/+22
|
* Formatting.Linus Nordberg2014-05-271-1/+2
|
* Improve basic description of plop.Linus Nordberg2014-05-271-6/+12
|
* Make tests use v1=0 too.Linus Nordberg2014-05-261-4/+3
|
* Handle error from db:find/1.Linus Nordberg2014-05-261-10/+9
|
* Change default protocol version from 1 to 0.Linus Nordberg2014-05-191-4/+2
| | | | | | RFC6962 "v1" is 0, not 1. Also, use a define and not a literal. Also also, move the define to plop.hrl.