Overview
Comment: | Compile AES as AES256 CTR |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | monocypher |
Files: | files | file ages | folders |
SHA3-256: |
4131055ef7069f3782ef4e709501edd3 |
User & Date: | rkeene on 2019-01-10 21:14:42 |
Other Links: | branch diff | manifest | tags |
Context
2019-01-11
| ||
15:53 | Add AES256-CTR Tcl command check-in: ed43f19076 user: rkeene tags: monocypher | |
2019-01-10
| ||
21:14 | Compile AES as AES256 CTR check-in: 4131055ef7 user: rkeene tags: monocypher | |
21:09 | Added AES support check-in: fceff1713f user: rkeene tags: monocypher | |
Changes
Modified Makefile.in from [feafc6e62e] to [a0a59daca8].
1 2 3 4 5 6 7 8 | monocypher_dir := @srcdir@/vendor/monocypher/ argon2_dir := @srcdir@/vendor/argon2/ aes_dir := @srcdir@/vendor/aes/ CC := @CC@ AR := @AR@ RANLIB := @RANLIB@ CFLAGS := @CFLAGS@ @SHOBJFLAGS@ | > | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | monocypher_dir := @srcdir@/vendor/monocypher/ argon2_dir := @srcdir@/vendor/argon2/ aes_dir := @srcdir@/vendor/aes/ aes_cppflags := -DAES256=1 -DCTR=1 -DCBC=0 -DECB=0 CC := @CC@ AR := @AR@ RANLIB := @RANLIB@ CFLAGS := @CFLAGS@ @SHOBJFLAGS@ CPPFLAGS := -I. -I@srcdir@ -I$(monocypher_dir) -I$(argon2_dir) -I$(aes_dir) $(aes_cppflags) @CPPFLAGS@ @SHOBJCPPFLAGS@ @DEFS@ @TCL_DEFS@ LDFLAGS := @LDFLAGS@ LIBS := @LIBS@ SHOBJLDFLAGS := @SHOBJLDFLAGS@ VPATH := @srcdir@ srcdir := @srcdir@ prefix := @prefix@ exec_prefix := @exec_prefix@ |
︙ | ︙ |