[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [UNIKRAFT/LIBHOGWEED v2 0/3] Port of libhogweed on Unikraft
Hi Dragos,
Looks pretty good, but you forgot about the non verbose mode for running the test suite. In order to be more specific, I will leave an inline comment in the 'Add glue code' patch.
Nettle is a cryptographic library that is designed to fit easily in more or
less any context: In crypto toolkits for object-oriented languages
(C++, Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel
space.
Nettle actually consists of two libraries, libnettle and libhogweed. The
libhogweed library contains those functions of Nettle that uses bignum
operations, and depends on the GMP library.
github repository: https://github.com/dragosargint/libhogweed.git
ARGINT DRAGOS IULIAN (3):
Add md files
Add Makefile.uk and Config.uk
Add glue code
.gitignore | 27 ++
CODING_STYLE.md | 4 +
CONTRIBUTING.md | 4 +
COPYING.md | 39 ++
Config.uk | 83 ++++
MAINTAINERS.md | 11 +
Makefile.uk | 490 ++++++++++++++++++++++++
README.md | 49 +++
include/testutils_glue.h | 26 ++
testutils_glue.c | 805 +++++++++++++++++++++++++++++++++++++++
10 files changed, 1538 insertions(+)
create mode 100644 .gitignore
create mode 100644 CODING_STYLE.md
create mode 100644 CONTRIBUTING.md
create mode 100644 COPYING.md
create mode 100644 Config.uk
create mode 100644 MAINTAINERS.md
create mode 100644 Makefile.uk
create mode 100644 README.md
create mode 100644 include/testutils_glue.h
create mode 100644 testutils_glue.c
--
2.17.1
|