Lines Matching refs:num

257     int num = EVP_CIPHER_CTX_get_num(ctx);  in camellia_ofb_cipher()  local
258 CRYPTO_ofb128_encrypt(in, out, len, &dat->ks, ctx->iv, &num, dat->block); in camellia_ofb_cipher()
259 EVP_CIPHER_CTX_set_num(ctx, num); in camellia_ofb_cipher()
268 int num = EVP_CIPHER_CTX_get_num(ctx); in camellia_cfb_cipher() local
269 CRYPTO_cfb128_encrypt(in, out, len, &dat->ks, ctx->iv, &num, in camellia_cfb_cipher()
271 EVP_CIPHER_CTX_set_num(ctx, num); in camellia_cfb_cipher()
280 int num = EVP_CIPHER_CTX_get_num(ctx); in camellia_cfb8_cipher() local
281 CRYPTO_cfb128_8_encrypt(in, out, len, &dat->ks, ctx->iv, &num, in camellia_cfb8_cipher()
283 EVP_CIPHER_CTX_set_num(ctx, num); in camellia_cfb8_cipher()
293 int num = EVP_CIPHER_CTX_get_num(ctx); in camellia_cfb1_cipher() local
294 CRYPTO_cfb128_1_encrypt(in, out, len, &dat->ks, ctx->iv, &num, in camellia_cfb1_cipher()
297 EVP_CIPHER_CTX_set_num(ctx, num); in camellia_cfb1_cipher()
302 int num = EVP_CIPHER_CTX_get_num(ctx); in camellia_cfb1_cipher() local
304 ctx->iv, &num, in camellia_cfb1_cipher()
307 EVP_CIPHER_CTX_set_num(ctx, num); in camellia_cfb1_cipher()
313 int num = EVP_CIPHER_CTX_get_num(ctx); in camellia_cfb1_cipher() local
315 ctx->iv, &num, in camellia_cfb1_cipher()
318 EVP_CIPHER_CTX_set_num(ctx, num); in camellia_cfb1_cipher()
328 unsigned int num; in camellia_ctr_cipher() local
333 num = snum; in camellia_ctr_cipher()
337 &num, in camellia_ctr_cipher()
341 EVP_CIPHER_CTX_buf_noconst(ctx), &num, in camellia_ctr_cipher()
343 EVP_CIPHER_CTX_set_num(ctx, num); in camellia_ctr_cipher()