Lines Matching defs:out
25 unsigned char *out = NULL;
70 if ((out = OPENSSL_malloc(max_out_len)) == NULL) {
75 if (!EVP_CipherUpdate(ctx, out, &i, in, inlen)) {
76 OPENSSL_free(out);
77 out = NULL;
83 if (!EVP_CipherFinal_ex(ctx, out + i, &i)) {
84 OPENSSL_free(out);
85 out = NULL;
96 (int)mac_len, out+outlen) < 0) {
97 OPENSSL_free(out);
98 out = NULL;
108 *data = out;
111 return out;
135 unsigned char *out = NULL;
141 &out, &outlen, 0, libctx, propq))
143 p = out;
146 BIO_dump(trc_out, out, outlen);
151 OPENSSL_cleanse(out, outlen);
154 OPENSSL_free(out);