Home | History | Annotate | Download | only in openssh

Lines Matching full:prf_key

220     aes_int_key prf_key;         /* Expanded AES key for PDF          */
223 static void pdf_init(pdf_ctx *pc, aes_int_key prf_key)
227 kdf(buf, prf_key, 0, UMAC_KEY_LEN);
228 aes_key_setup(buf, pc->prf_key);
232 aes_encryption(pc->nonce, pc->cache, pc->prf_key);
262 aes_encryption(pc->nonce, pc->cache, pc->prf_key);
599 static void nh_init(nh_ctx *hc, aes_int_key prf_key)
602 kdf(hc->nh_key, prf_key, 1, sizeof(hc->nh_key));
955 static void uhash_init(uhash_ctx_t ahc, aes_int_key prf_key)
964 nh_init(&ahc->hash, prf_key);
967 kdf(buf, prf_key, 2, sizeof(buf)); /* Fill buffer with index 1 key */
981 kdf(buf, prf_key, 3, sizeof(buf)); /* Fill buffer with index 2 key */
992 kdf(ahc->ip_trans, prf_key, 4, STREAMS * sizeof(UINT32));
1005 aes_int_key prf_key;
1015 aes_key_setup(key,prf_key);
1016 uhash_init(ctx, prf_key);
1218 aes_int_key prf_key;
1228 aes_key_setup(key,prf_key);
1229 pdf_init(&ctx->pdf, prf_key);
1230 uhash_init(&ctx->hash, prf_key);