Home
last modified time | relevance | path

Searched refs:bf_key (Results 1 – 1 of 1) sorted by relevance

/external/boringssl/src/decrepit/blowfish/
Dblowfish.c559 BF_KEY *bf_key = ctx->cipher_data; in bf_init_key() local
560 BF_set_key(bf_key, ctx->key_len, key); in bf_init_key()
566 BF_KEY *bf_key = ctx->cipher_data; in bf_ecb_cipher() local
569 BF_ecb_encrypt(in, out, bf_key, ctx->encrypt); in bf_ecb_cipher()
581 BF_KEY *bf_key = ctx->cipher_data; in bf_cbc_cipher() local
582 BF_cbc_encrypt(in, out, len, bf_key, ctx->iv, ctx->encrypt); in bf_cbc_cipher()
588 BF_KEY *bf_key = ctx->cipher_data; in bf_cfb_cipher() local
590 BF_cfb64_encrypt(in, out, len, bf_key, ctx->iv, &num, ctx->encrypt); in bf_cfb_cipher()