Home | History | Annotate | Download | only in hx509

Lines Matching refs:ciphertext

1218 		      heim_octet_string *ciphertext)
1228 ciphertext->data = NULL;
1229 ciphertext->length = 0;
1263 ciphertext->length = ret;
1264 ciphertext->data = to;
1268 der_free_octet_string(ciphertext);
1278 const heim_octet_string *ciphertext,
1300 ret = RSA_private_decrypt(ciphertext->length, ciphertext->data,
2095 heim_octet_string **ciphertext)
2109 *ciphertext = NULL;
2130 *ciphertext = calloc(1, sizeof(**ciphertext));
2131 if (*ciphertext == NULL) {
2149 (*ciphertext)->length = length + padsize;
2150 (*ciphertext)->data = malloc(length + padsize);
2151 if ((*ciphertext)->data == NULL) {
2156 memcpy((*ciphertext)->data, data, length);
2159 unsigned char *p = (*ciphertext)->data;
2165 ret = EVP_Cipher(evp, (*ciphertext)->data,
2166 (*ciphertext)->data,
2176 if (*ciphertext) {
2177 if ((*ciphertext)->data) {
2178 free((*ciphertext)->data);
2180 free(*ciphertext);
2181 *ciphertext = NULL;