X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/Cipher_code.git/blobdiff_plain/4e82257884f5ab73a3add3a448bfc85caa8cbfa5..97471e47ce9dd055be429aaeef7aa20fa9eee9ce:/OneRoundIoT/openssl/Makefile

diff --git a/OneRoundIoT/openssl/Makefile b/OneRoundIoT/openssl/Makefile
index 34b74d2..59643a3 100644
--- a/OneRoundIoT/openssl/Makefile
+++ b/OneRoundIoT/openssl/Makefile
@@ -6,6 +6,9 @@ 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
+OBJ7 =    pixmap_io.o openssl_evp_ocb.o
+OBJ8 =    pixmap_io.o openssl_chacha20_poly1305.o
+OBJ9 =    pixmap_io.o openssl_chacha20_poly1305_v2.o
 
 openssl_evp: $(OBJ)
 	$(C) -o $@ $^ $(CFLAGS)
@@ -26,11 +29,20 @@ openssl_evp_gcm: $(OBJ5)
 openssl_evp_hmac: $(OBJ6)
 	$(C) -o $@ $^ $(CFLAGS)
 
+openssl_evp_ocb: $(OBJ7)
+	$(C) -o $@ $^ $(CFLAGS)
+
+openssl_evp_chacha20_poly1305: $(OBJ7)
+	$(C) -o $@ $^ $(CFLAGS)
+
+openssl_evp_chacha20_poly1305_v2: $(OBJ7)
+	$(C) -o $@ $^ $(CFLAGS)
+
 
 %.o: %.c 
 	$(C) -c -o $@ $<  -O3
 
 
 clean:
-	rm -rf $(OBJ)  openssl_evp openssl_evp_cmac openssl_evp_ccm
+	rm -rf $(OBJ)  openssl_evp openssl_evp_cmac openssl_evp_ccm openssl_evp_ocb  openssl_evp_chacha20_poly1305_v2  openssl_evp_chacha20_poly1305