summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/hash.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* perform hashing directly in crypto_hash_sha512() using libcrypto ordjm2019-11-291-8/+22
| | | | | | libc SHA512 functions rather than calling ssh_digest_memory(); avoids many dependencies on ssh code that complicate standalone use of ed25519, as we want to do in sk-dummy.so
* clarify authorship; prodded by and ok markus@naddy2018-01-131-1/+5
|
* Replace ED25519's private SHA-512 implementation with a call to thenaddy2017-12-141-66/+13
| | | | | regular digest code. This speeds up compilation considerably. ok markus@
* Add Authors for the public domain ed25519/nacl code.markus2013-12-091-2/+2
| | | | | | | see also http://nacl.cr.yp.to/features.html All of the NaCl software is in the public domain. and http://ed25519.cr.yp.to/software.html The Ed25519 software is in the public domain.
* correct RCS identsdjm2013-12-071-1/+1
|
* support ed25519 keys (hostkeys and user identities) using the public domainmarkus2013-12-061-0/+74
ed25519 reference code from SUPERCOP, see http://ed25519.cr.yp.to/software.html feedback, help & ok djm@