Home | History | Annotate | Download | only in store

Lines Matching full:x509

66 #include <openssl/x509.h>
254 X509 *STORE_get_certificate(STORE *s, OPENSSL_ITEM attributes[],
258 X509 *x;
265 if (!object || !object->data.x509.certificate)
271 CRYPTO_add(&object->data.x509.certificate->references,1,CRYPTO_LOCK_X509);
273 REF_PRINT("X509",data);
275 x = object->data.x509.certificate;
280 int STORE_store_certificate(STORE *s, X509 *data, OPENSSL_ITEM attributes[],
299 REF_PRINT("X509",data);
301 object->data.x509.certificate = data;
386 X509 *STORE_list_certificate_next(STORE *s, void *handle)
389 X509 *x;
395 if (!object || !object->data.x509.certificate)
401 CRYPTO_add(&object->data.x509.certificate->references,1,CRYPTO_LOCK_X509);
403 REF_PRINT("X509",data);
405 x = object->data.x509.certificate;
1240 X509_free(data->data.x509.certificate);