HomeSort by: relevance | last modified time | path
    Searched defs:def_iv (Results 1 - 1 of 1) sorted by relevancy

  /src/crypto/external/cpl/trousers/dist/src/trspi/crypto/openssl/
symmetric.c 259 BYTE *def_iv = NULL, *outiv_ptr; local
276 def_iv = malloc(iv_len);
277 if (def_iv == NULL) {
281 RAND_bytes(def_iv, iv_len);
283 memcpy(out, def_iv, iv_len);
287 def_iv = iv;
291 if (!EVP_EncryptInit(ctx, (const EVP_CIPHER *)cipher, key, def_iv)) {
318 if (def_iv != iv) {
320 free(def_iv);
333 BYTE *def_iv = NULL, *iniv_ptr local
    [all...]

Completed in 27 milliseconds