Lines Matching defs:key
60 #define Nk 4 /* The number of 32 bit words in a key. */
134 /* The first round key is the key itself. */
188 static void AES_init_ctx(struct AES_ctx *ctx, const __u8 *key) {
189 KeyExpansion(ctx->RoundKey, key);
192 /* This function adds the round key to state. The round key is added
292 /* Add the First round key to the state before starting the
429 __type(key, __u64);
436 __type(key, __u32);
443 __type(key, __u32);
582 __u8 key[AES_KEYLEN];
600 __builtin_memcpy(key, pkey, sizeof(*pkey));
607 __builtin_memcpy(key + sizeof(*pkey), pkey, sizeof(*pkey));
614 AES_init_ctx(&aes_ctx, key);