#ifndef _CRYPTO_CAST6_H #define _CRYPTO_CAST6_H #include #include #include #define CAST6_BLOCK_SIZE 16 #define CAST6_MIN_KEY_SIZE 16 #define CAST6_MAX_KEY_SIZE 32 struct cast6_ctx { u32 Km[12][4]; u8 Kr[12][4]; }; int __cast6_setkey(struct cast6_ctx *ctx, const u8 *key, unsigned int keylen, u32 *flags); int cast6_setkey(struct crypto_tfm *tfm, const u8 *key, unsigned int keylen); void __cast6_encrypt(struct cast6_ctx *ctx, u8 *dst, const u8 *src); void __cast6_decrypt(struct cast6_ctx *ctx, u8 *dst, const u8 *src); #endif le='net-next.git Git repository'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVineet Gupta <vgupta@synopsys.com>2017-01-19 17:05:00 -0800
committerVineet Gupta <vgupta@synopsys.com>2017-01-24 11:05:59 -0800
commit517e7610d2ce04d1b8d8b6c6d1a36dcce5cac6ab (patch)
treebe95871b4aa158d5bfc410a46d86594618dcb662 /tools/testing/selftests
parent36425cd67052e3becf325fd4d3ba5691791ef7e4 (diff)
ARCv2: MCIP: update the BCR per current changes
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Diffstat (limited to 'tools/testing/selftests')