#include <keys/user-type.h>
 #include <keys/big_key-type.h>
 #include <crypto/aead.h>
+#include <crypto/gcm.h>
 
 struct big_key_buf {
        unsigned int            nr_pages;
  * Crypto names for big_key data authenticated encryption
  */
 static const char big_key_alg_name[] = "gcm(aes)";
+#define BIG_KEY_IV_SIZE                GCM_AES_IV_SIZE
 
 /*
  * Crypto algorithms for big_key data authenticated encryption
         * an .update function, so there's no chance we'll wind up reusing the
         * key to encrypt updated data. Simply put: one key, one encryption.
         */
-       u8 zero_nonce[crypto_aead_ivsize(big_key_aead)];
+       u8 zero_nonce[BIG_KEY_IV_SIZE];
 
        aead_req = aead_request_alloc(big_key_aead, GFP_KERNEL);
        if (!aead_req)
                pr_err("Can't alloc crypto: %d\n", ret);
                return ret;
        }
+
+       if (unlikely(crypto_aead_ivsize(big_key_aead) != BIG_KEY_IV_SIZE)) {
+               WARN(1, "big key algorithm changed?");
+               ret = -EINVAL;
+               goto free_aead;
+       }
+
        ret = crypto_aead_setauthsize(big_key_aead, ENC_AUTHTAG_SIZE);
        if (ret < 0) {
                pr_err("Can't set crypto auth tag len: %d\n", ret);