A
lgorithmique
N
umérique
D
istribuée
Private GIT Repository
projects
/
Cipher_code.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
add openssl hmac
[Cipher_code.git]
/
OneRoundIoT
/
openssl
/
Makefile
diff --git
a/OneRoundIoT/openssl/Makefile
b/OneRoundIoT/openssl/Makefile
index 65338fd9b09b7f32e7082d60b4e31ce6cfd58838..34b74d2a0670b8dc651d3731317f476126bce8d4 100644
(file)
--- a/
OneRoundIoT/openssl/Makefile
+++ b/
OneRoundIoT/openssl/Makefile
@@
-5,6
+5,7
@@
OBJ2 = pixmap_io.o openssl_evp_cmac.o
OBJ3 = pixmap_io.o openssl_evp_ccm.o
OBJ4 = pixmap_io.o aesccm.o
OBJ5 = pixmap_io.o openssl_evp_gcm.o
OBJ3 = pixmap_io.o openssl_evp_ccm.o
OBJ4 = pixmap_io.o aesccm.o
OBJ5 = pixmap_io.o openssl_evp_gcm.o
+OBJ6 = pixmap_io.o openssl_evp_hmac.o
openssl_evp: $(OBJ)
$(C) -o $@ $^ $(CFLAGS)
openssl_evp: $(OBJ)
$(C) -o $@ $^ $(CFLAGS)
@@
-22,6
+23,10
@@
aesccm: $(OBJ4)
openssl_evp_gcm: $(OBJ5)
$(C) -o $@ $^ $(CFLAGS)
openssl_evp_gcm: $(OBJ5)
$(C) -o $@ $^ $(CFLAGS)
+openssl_evp_hmac: $(OBJ6)
+ $(C) -o $@ $^ $(CFLAGS)
+
+
%.o: %.c
$(C) -c -o $@ $< -O3
%.o: %.c
$(C) -c -o $@ $< -O3