summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/fe25519.c
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2013-12-09 11:03:46 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2013-12-09 11:03:46 +0000
commit3c3fed3a2ab029aa13245bcf0cbb9776723c44f6 (patch)
treeeea2cd7a89316ec2e00c507f427a8083ae192c46 /usr.bin/ssh/fe25519.c
parent8d4600a1d5de738894cf6bbbbdc8c3751f18a782 (diff)
Add Authors for the public domain ed25519/nacl code.
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.
Diffstat (limited to 'usr.bin/ssh/fe25519.c')
-rw-r--r--usr.bin/ssh/fe25519.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/usr.bin/ssh/fe25519.c b/usr.bin/ssh/fe25519.c
index 3a9181bad38..2f368ebe6c8 100644
--- a/usr.bin/ssh/fe25519.c
+++ b/usr.bin/ssh/fe25519.c
@@ -1,6 +1,10 @@
-/* $OpenBSD: fe25519.c,v 1.2 2013/12/07 00:26:37 djm Exp $ */
+/* $OpenBSD: fe25519.c,v 1.3 2013/12/09 11:03:45 markus Exp $ */
-/* Public Domain, from supercop-20130419/crypto_sign/ed25519/ref/fe25519.c */
+/*
+ * Public Domain, Authors: Daniel J. Bernstein, Niels Duif, Tanja Lange,
+ * Peter Schwabe, Bo-Yin Yang.
+ * Copied from supercop-20130419/crypto_sign/ed25519/ref/fe25519.c
+ */
#define WINDOWSIZE 1 /* Should be 1,2, or 4 */
#define WINDOWMASK ((1<<WINDOWSIZE)-1)