tillitis-key/hw/application_fpga/fw/mta1_mkdf/blake2s
Michael Cardell Widerkrantz 6d08a82c05
Pass the blake2s_ctx to blake2s() as arg
Instead of allocating the blake2s_ctx in the blake2s() function we
pass it as a pointer as an argument to be able to better control where
the variable is in memory.
2022-10-18 14:51:26 +02:00
..
blake2s.c Pass the blake2s_ctx to blake2s() as arg 2022-10-18 14:51:26 +02:00
blake2s.h Pass the blake2s_ctx to blake2s() as arg 2022-10-18 14:51:26 +02:00
LICENSE Make initial public release 2022-09-19 08:51:11 +02:00
README.md Make initial public release 2022-09-19 08:51:11 +02:00

blake2s

A Blake2s implementation taken from Joachim Strömbergson's

https://github.com/secworks/blake2s

Specifically from

https://github.com/secworks/blake2s/tree/master/src/model

Minor local changes for build purposes.