Home
last modified time | relevance | path

Searched refs:store_method (Results 1 – 2 of 2) sorted by relevance

/NextBSD/crypto/openssl/crypto/store/
HDstr_meth.c66 STORE_METHOD *store_method = in STORE_create_method() local
69 if (store_method) { in STORE_create_method()
70 memset(store_method, 0, sizeof(*store_method)); in STORE_create_method()
71 store_method->name = BUF_strdup(name); in STORE_create_method()
73 return store_method; in STORE_create_method()
81 void STORE_destroy_method(STORE_METHOD *store_method) in STORE_destroy_method() argument
83 if (!store_method) in STORE_destroy_method()
85 OPENSSL_free(store_method->name); in STORE_destroy_method()
86 store_method->name = NULL; in STORE_destroy_method()
87 OPENSSL_free(store_method); in STORE_destroy_method()
HDstore.h357 void STORE_destroy_method(STORE_METHOD *store_method);