mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Koen Zandberg
6d8e18b57e
c25519[1] is a library optimized for embedded applications handling ed25519 signing and x25519 crypto. It uses significantly less memory and flash compared to TweetNaCl and is significantly faster when used on a samr21-xpro [1]: https://www.dlbeer.co.nz/oss/c25519.html
12 lines
170 B
Makefile
12 lines
170 B
Makefile
MODULE := c25519
|
|
|
|
SRC += c25519.c
|
|
SRC += ed25519.c
|
|
SRC += edsign.c
|
|
SRC += f25519.c
|
|
SRC += fprime.c
|
|
SRC += morph25519.c
|
|
SRC += sha512.c
|
|
|
|
include $(RIOTBASE)/Makefile.base
|