Searched refs:discard_len (Results 1 - 1 of 1) sorted by last modified time

/freebsd-11-stable/crypto/openssh/
H A Dcipher.c76 u_int discard_len; member in struct:sshcipher
398 if (cipher->discard_len > 0) {
399 if ((junk = malloc(cipher->discard_len)) == NULL ||
400 (discard = malloc(cipher->discard_len)) == NULL) {
405 ret = EVP_Cipher(cc->evp, discard, junk, cipher->discard_len);
406 explicit_bzero(discard, cipher->discard_len);

Completed in 66 milliseconds