Overview
Comment: | Restructuring to get rid of SUPERCOP reference, it is incorrect |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
1f76e42a02a1d7f7ea0b01ada2b5f3f8 |
User & Date: | rkeene on 2018-07-02 06:41:42 |
Other Links: | manifest | tags |
Context
2018-07-02
| ||
07:20 | Moved our patchwork to its own internal directories in preparation for a release cleanup check-in: 4168b04669 user: rkeene tags: trunk | |
06:41 | Restructuring to get rid of SUPERCOP reference, it is incorrect check-in: 1f76e42a02 user: rkeene tags: trunk | |
06:22 | Added some whitespace for readability check-in: de6758280f user: rkeene tags: trunk | |
Changes
Modified .fossil-settings/ignore-glob from [003b6d91a2] to [bac52d47ba].
︙ | |||
8 9 10 11 12 13 14 15 16 17 | 8 9 10 11 12 13 14 15 16 17 18 | + | config.guess config.sub configure install-sh config.log config.status blake2b/blake2b.o blake2b/blake2b-ref-nacl.c tweetnacl/tweetnacl.c tweetnacl/tweetnacl.h tweetnacl/tweetnacl.o |
Modified Makefile.in from [86dc23739a] to [995ac69c25].
1 2 | 1 2 3 4 5 6 7 8 9 10 | - + | CC := @CC@ CFLAGS := @CFLAGS@ @SHOBJFLAGS@ |
︙ |
Modified blake2b/Makefile from [9845ac7671] to [b148d945c1].
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | - - + + + + + + + |
|
Added blake2b/blake2-nacl.c version [dc9825f995].
|
Renamed and modified blake2b/blake2-supercop.h [0657242b46] to blake2b/blake2-nacl.h [8986e1e5b4].
1 2 3 4 5 | 1 2 3 4 5 6 7 8 9 | - + + | #define crypto_hash_PRIMITIVE "blake2b" #define crypto_hash_BYTES crypto_hash_blake2b_BYTES #define crypto_hash_IMPLEMENTATION crypto_hash_blake2b_IMPLEMENTATION #define crypto_hash_VERSION crypto_hash_blake2b_VERSION #define crypto_hash_blake2b_BYTES 64 |
Modified nano.c from [f4f5005da0] to [1242d36c58].
1 2 3 4 5 6 7 8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | - + | #include <stdint.h> #include <limits.h> #include <string.h> #include <stdlib.h> #include <unistd.h> #include <tcl.h> #include "tweetnacl.h" |
︙ |
Modified tweetnacl/Makefile from [b9469f5858] to [9e180a9dbc].
1 2 3 4 5 6 7 8 9 10 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | - + - + - + | 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 |
︙ |
Renamed and modified tweetnacl/patches/tweetnacl-supercop.diff [822aac2959] to tweetnacl/patches/tweetnacl-ed25519blake2b.diff [5d9e8c11d3].
1 2 3 4 5 6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | - + - + - + - + - + | --- a/tweetnacl.c.new +++ b/tweetnacl.c.new @@ -32,12 +32,14 @@ return (u<<8)|x[0]; } |