remove OCB mode
[tfcrypt.git] / tfdef.h
diff --git a/tfdef.h b/tfdef.h
index 72c713df4764b331452e311b7c9380c3ec43cf2b..2eac9f8c240d46a16f2df37d223432e8e2e5853e 100644 (file)
--- a/tfdef.h
+++ b/tfdef.h
@@ -137,7 +137,5 @@ void tf_cbc_encrypt(const void *key, void *iv, void *out, const void *in, size_t
 void tf_cbc_decrypt(const void *key, void *iv, void *out, const void *in, size_t sz);
 void tf_xts_encrypt(const void *keyx, const void *keyz, void *ctr, void *out, const void *in, size_t sz, size_t bpi);
 void tf_xts_decrypt(const void *keyx, const void *keyz, void *ctr, void *out, const void *in, size_t sz, size_t bpi);
-void tf_ocb_encrypt(const void *key, void *ctr, void *out, void *tag, const void *in, size_t sz, size_t bpi);
-void tf_ocb_decrypt(const void *key, void *ctr, void *out, void *tag, const void *in, size_t sz, size_t bpi);
 
 #endif