Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dchest/wots
Go package wots implements Winternitz-Lamport-Diffie one-time signature scheme.
https://github.com/dchest/wots
Last synced: about 1 month ago
JSON representation
Go package wots implements Winternitz-Lamport-Diffie one-time signature scheme.
- Host: GitHub
- URL: https://github.com/dchest/wots
- Owner: dchest
- License: bsd-2-clause
- Created: 2012-10-10T23:20:53.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2019-08-07T02:11:55.000Z (over 5 years ago)
- Last Synced: 2024-06-21T02:15:18.815Z (5 months ago)
- Language: Go
- Homepage: https://godoc.org/github.com/dchest/wots
- Size: 9.77 KB
- Stars: 7
- Watchers: 3
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
Go implementation of Winternitz-Lamport-Diffie one-time signature scheme.
If the hash function is one-way and of sufficient length, the private key is
random, not known to the attacker, and used to sign only one message, and
there are no bugs in this implementation, it is infeasible to forge
signatures (even on quantum computer, provided that it can't break the
underlying hash function).INSTALLATION
$ go get github.com/dchest/wots
USAGE
import "github.com/dchest/wots"
See documentation for example.
DOCUMENTATION
See https://godoc.org/github.com/dchest/wots
LICENSE
BSD-like, see LICENSE file.