Lines Matching refs:suffix
756 #define DEFINE_AVX_SKCIPHER_ALGS(suffix, driver_name_suffix, priority) \
759 aes_xts_encrypt_##suffix(const struct crypto_aes_ctx *key, const u8 *src, \
762 aes_xts_decrypt_##suffix(const struct crypto_aes_ctx *key, const u8 *src, \
765 static int xts_encrypt_##suffix(struct skcipher_request *req) \
767 return xts_crypt(req, aes_xts_encrypt_iv, aes_xts_encrypt_##suffix); \
770 static int xts_decrypt_##suffix(struct skcipher_request *req) \
772 return xts_crypt(req, aes_xts_encrypt_iv, aes_xts_decrypt_##suffix); \
776 aes_ctr64_crypt_##suffix(const struct crypto_aes_ctx *key, \
779 static int ctr_crypt_##suffix(struct skcipher_request *req) \
781 return ctr_crypt(req, aes_ctr64_crypt_##suffix); \
785 aes_xctr_crypt_##suffix(const struct crypto_aes_ctx *key, \
789 static int xctr_crypt_##suffix(struct skcipher_request *req) \
791 return xctr_crypt(req, aes_xctr_crypt_##suffix); \
794 static struct skcipher_alg skcipher_algs_##suffix[] = {{ \
807 .encrypt = xts_encrypt_##suffix, \
808 .decrypt = xts_decrypt_##suffix, \
822 .encrypt = ctr_crypt_##suffix, \
823 .decrypt = ctr_crypt_##suffix, \
837 .encrypt = xctr_crypt_##suffix, \
838 .decrypt = xctr_crypt_##suffix, \
842 simd_skcipher_algs_##suffix[ARRAY_SIZE(skcipher_algs_##suffix)]
1458 #define DEFINE_GCM_ALGS(suffix, flags, generic_driver_name, rfc_driver_name, \
1461 static int gcm_setkey_##suffix(struct crypto_aead *tfm, const u8 *raw_key, \
1467 static int gcm_encrypt_##suffix(struct aead_request *req) \
1472 static int gcm_decrypt_##suffix(struct aead_request *req) \
1477 static int rfc4106_setkey_##suffix(struct crypto_aead *tfm, const u8 *raw_key, \
1483 static int rfc4106_encrypt_##suffix(struct aead_request *req) \
1488 static int rfc4106_decrypt_##suffix(struct aead_request *req) \
1493 static struct aead_alg aes_gcm_algs_##suffix[] = { { \
1494 .setkey = gcm_setkey_##suffix, \
1496 .encrypt = gcm_encrypt_##suffix, \
1497 .decrypt = gcm_decrypt_##suffix, \
1511 .setkey = rfc4106_setkey_##suffix, \
1513 .encrypt = rfc4106_encrypt_##suffix, \
1514 .decrypt = rfc4106_decrypt_##suffix, \
1529 static struct simd_aead_alg *aes_gcm_simdalgs_##suffix[2] \