mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-25 16:31:06 +00:00
a2743dcaeb
The 'aes_cbc_4k' library is simple wrapper around libsparkcrypto to serve as a backend for storage encryption. It operates on data chunks of 4 KiB and uses AES-CBC while incorporating the block number and the private key as salt values.
11 lines
233 B
Makefile
11 lines
233 B
Makefile
SRC_ADB := aes_cbc_4k.adb
|
|
LIBS += spark libsparkcrypto
|
|
|
|
CC_ADA_OPT += -gnatec=$(REP_DIR)/src/lib/aes_cbc_4k/spark.adc
|
|
|
|
INC_DIR += $(REP_DIR)/src/lib/aes_cbc_4k
|
|
|
|
aes_cbc_4k.o : aes_cbc_4k.ads
|
|
|
|
vpath % $(REP_DIR)/src/lib/aes_cbc_4k
|