Lines Matching full:cipher_array
84 cipher_array_bits_per_second(cipher_t *cipher_array[], int num_cipher,
88 cipher_array_delete(cipher_t *cipher_array[], int num_cipher);
91 cipher_array_alloc_init(cipher_t ***cipher_array, int num_ciphers,
162 int max_num_cipher = 1 << 16; /* number of ciphers in cipher_array */
350 cipher_t **cipher_array;
353 cipher_array = (cipher_t **) malloc(sizeof(cipher_t *) * num_ciphers);
354 if (cipher_array == NULL)
357 /* set ca to location of cipher_array */
358 *ca = cipher_array;
363 free(cipher_array);
371 status = cipher_type_alloc(ctype, cipher_array, klen);
378 status = cipher_init(*cipher_array, key, direction_encrypt);
382 /* printf("%dth cipher is at %p\n", i, *cipher_array); */
384 /* (*cipher_array)->type->description); */
387 cipher_array++;
394 cipher_array_delete(cipher_t *cipher_array[], int num_cipher) {
398 cipher_dealloc(cipher_array[i]);
401 free(cipher_array);
420 cipher_array_bits_per_second(cipher_t *cipher_array[], int num_cipher,
442 cipher_set_iv(cipher_array[cipher_index], &nonce);
443 cipher_encrypt(cipher_array[cipher_index], enc_buf, &octets_in_buffer);