Home | History | Annotate | Download | only in openssh

Lines Matching refs:outbuf

77 	u_char *inbuf = NULL, *outbuf = NULL;
84 if ((outbuf = malloc(olen)) == NULL) {
96 if ((len = RSA_public_encrypt(ilen, inbuf, outbuf, key,
102 if (BN_bin2bn(outbuf, len, out) == NULL) {
109 if (outbuf != NULL) {
110 explicit_bzero(outbuf, olen);
111 free(outbuf);
123 u_char *inbuf = NULL, *outbuf = NULL;
127 if ((outbuf = malloc(olen)) == NULL) {
139 if ((len = RSA_private_decrypt(ilen, inbuf, outbuf, key,
143 } else if (BN_bin2bn(outbuf, len, out) == NULL) {
149 if (outbuf != NULL) {
150 explicit_bzero(outbuf, olen);
151 free(outbuf);