Overview
Comment: | Moved our patchwork to its own internal directories in preparation for a release cleanup |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
4168b0466967b3b6f0497a7b3731eeae |
User & Date: | rkeene on 2018-07-02 07:20:44.563 |
Other Links: | manifest | tags |
Context
2018-07-02
| ||
07:22 | A bit more cleanup check-in: 795a02cd06 user: rkeene tags: trunk | |
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 | |
Changes
Modified .fossil-settings/ignore-glob
from [bac52d47ba]
to [a530363cf3].
1 2 3 4 5 6 7 8 9 10 11 12 13 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | - - - - + + - + + | nano.so nano.o nano.syms nano.tcl.h Makefile pkgIndex.tcl aclocal.m4 config.guess config.sub configure install-sh config.log config.status |
Modified Makefile.in
from [995ac69c25]
to [94758a3fc2].
1 2 3 4 5 6 7 8 | 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 | - - - + + - - + + - + - - + + - - + + - + - - + - - - + | CC := @CC@ CFLAGS := @CFLAGS@ @SHOBJFLAGS@ CPPFLAGS := -I. -I@srcdir@/tweetnacl/ -I@srcdir@/blake2b/ -DNACL_ED25519_BLAKE2B=1 @CPPFLAGS@ @SHOBJCPPFLAGS@ @DEFS@ LDFLAGS := @LDFLAGS@ LIBS := @LIBS@ SHOBJLDFLAGS := @SHOBJLDFLAGS@ srcdir := @srcdir@ export CC CFLAGS CPPFLAGS |
Modified autogen.sh
from [426853af67]
to [5275187d93].
︙ | |||
72 73 74 75 76 77 78 | 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | + + + + + + + + + + + + + + | echo "automake failed" >&2 exit 1 fi autoconf rm -rf autom4te.cache set -e # Assemble tweetnacl make -C build/tweetnacl rm -rf tweetnacl mkdir tweetnacl cp build/tweetnacl/out/* tweetnacl/ # Assemble blake2b make -C build/blake2b rm -rf blake2b mkdir blake2b cp build/blake2b/out/* blake2b/ |
Renamed and modified
blake2b/Makefile
[b148d945c1]
to build/blake2b/Makefile
[f2013095e9].
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | - + - + + - - - + + + + + + + + + - - + + - + |
|
Renamed and modified
blake2b/blake2-nacl.c
[dc9825f995]
to build/blake2b/blake2-nacl.c
[41e5cf5dd8].
1 | 1 2 3 4 5 6 | - + | #if defined(NACL_ED25519_BLAKE2B) |
Renamed and modified
blake2b/blake2-nacl.h
[8986e1e5b4]
to build/blake2b/blake2-nacl.h
[25d1438790].
|
Name change
from blake2b/blake2-impl.h
to build/blake2b/src/blake2-impl.h.
Name change
from blake2b/blake2.h
to build/blake2b/src/blake2.h.
Name change
from blake2b/blake2b-ref.c
to build/blake2b/src/blake2b-ref.c.
Renamed and modified
tweetnacl/Makefile
[9e180a9dbc]
to build/tweetnacl/Makefile
[d736d17e3f].
| 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 | - + - + + - - + - - + + - + + |
|
Name change
from tweetnacl/patches/tweetnacl-derivepubkey.diff
to build/tweetnacl/patches/tweetnacl-derivepubkey.diff.
Renamed and modified
tweetnacl/patches/tweetnacl-ed25519blake2b.diff
[5d9e8c11d3]
to build/tweetnacl/patches/tweetnacl-ed25519blake2b.diff
[df305f7e81].
︙ | |||
54 55 56 57 58 59 60 | 54 55 56 57 58 59 60 61 62 63 64 65 | - + | +#ifndef NACL_ED25519_BLAKE2B #define crypto_hash_PRIMITIVE "sha512" #define crypto_hash crypto_hash_sha512 #define crypto_hash_BYTES crypto_hash_sha512_BYTES #define crypto_hash_IMPLEMENTATION crypto_hash_sha512_IMPLEMENTATION #define crypto_hash_VERSION crypto_hash_sha512_VERSION +#else |
Name change
from tweetnacl/src/tweetnacl.c
to build/tweetnacl/src/tweetnacl.c.
Name change
from tweetnacl/src/tweetnacl.h
to build/tweetnacl/src/tweetnacl.h.
Modified nano.c
from [1242d36c58]
to [470015e0f0].
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" |
︙ |