Overview
| Comment: | Added patch to allow deriving the public key component from a secret key |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
f08c39c4fee372be255f3c198f8d104f |
| User & Date: | rkeene on 2018-07-01 20:06:02.758 |
| Other Links: | manifest | tags |
Context
|
2018-07-01
| ||
| 20:48 | Added start of additional internal functions check-in: eb360ae2a4 user: rkeene tags: trunk | |
| 20:06 | Added patch to allow deriving the public key component from a secret key check-in: f08c39c4fe user: rkeene tags: trunk | |
|
2018-06-30
| ||
| 13:13 | More work on an internal signing function check-in: 8e2b1497b3 user: rkeene tags: trunk | |
Changes
Modified tweetnacl/Makefile
from [9ef12a428e]
to [c444485edc].
1 2 3 4 5 6 7 8 9 10 | all: tweetnacl.o tweetnacl.h.new: src/tweetnacl.h rm -f tweetnacl.h.new tweetnacl.h cp src/tweetnacl.h tweetnacl.h.new tweetnacl.c.new: src/tweetnacl.c rm -f tweetnacl.c.new tweetnacl.c cp src/tweetnacl.c tweetnacl.c.new | | | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | all: tweetnacl.o tweetnacl.h.new: src/tweetnacl.h rm -f tweetnacl.h.new tweetnacl.h cp src/tweetnacl.h tweetnacl.h.new tweetnacl.c.new: src/tweetnacl.c rm -f tweetnacl.c.new tweetnacl.c cp src/tweetnacl.c tweetnacl.c.new tweetnacl.c: tweetnacl.c.new tweetnacl.h.new patches/tweetnacl-supercop.diff patches/tweetnacl-derivepubkey.diff rm -f tweetnacl.c tweetnacl.h patch -p1 < patches/tweetnacl-supercop.diff || ( rm -f tweetnacl.c.new tweetnacl.h.new; exit 1 ) patch -p1 < patches/tweetnacl-derivepubkey.diff || ( rm -f tweetnacl.c.new tweetnacl.h.new; exit 1 ) mv tweetnacl.h.new tweetnacl.h mv tweetnacl.c.new tweetnacl.c tweetnacl.h: tweetnacl.c tweetnacl.o: tweetnacl.c tweetnacl.h $(CC) $(CPPFLAGS) $(CFLAGS) -DSUPERCOP=1 -I../blake2b/ -o tweetnacl.o -c tweetnacl.c |
| ︙ | ︙ |
Added tweetnacl/patches/tweetnacl-derivepubkey.diff version [22ab288973].