]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - providers/implementations/ciphers/cipher_aes_siv.h
Replace provider cipher flags with separate param fields
[thirdparty/openssl.git] / providers / implementations / ciphers / cipher_aes_siv.h
index 6d2649f04984824159f3aa7f7b68fa37c9dfcae5..c0b2a903bcba5957f1060f67580d41daefe68791 100644 (file)
@@ -24,7 +24,6 @@ typedef struct prov_cipher_hw_aes_siv_st {
 typedef struct prov_siv_ctx_st {
     unsigned int mode;       /* The mode that we are using */
     unsigned int enc : 1;    /* Set to 1 if we are encrypting or 0 otherwise */
-    uint64_t flags;
     size_t keylen;           /* The input keylength (twice the alg key length) */
     size_t taglen;           /* the taglen is the same as the sivlen */
     SIV128_CONTEXT siv;