• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/OpenSSL098-52/src/crypto/store/

Lines Matching refs:attributes

166 /* Store functions take attribute lists.  Those attributes come with codes.
230 X509 *STORE_get_certificate(STORE *e, OPENSSL_ITEM attributes[],
232 int STORE_store_certificate(STORE *e, X509 *data, OPENSSL_ITEM attributes[],
237 int STORE_revoke_certificate(STORE *e, OPENSSL_ITEM attributes[],
239 int STORE_delete_certificate(STORE *e, OPENSSL_ITEM attributes[],
241 void *STORE_list_certificate_start(STORE *e, OPENSSL_ITEM attributes[],
246 EVP_PKEY *STORE_generate_key(STORE *e, OPENSSL_ITEM attributes[],
248 EVP_PKEY *STORE_get_private_key(STORE *e, OPENSSL_ITEM attributes[],
251 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
255 int STORE_revoke_private_key(STORE *e, OPENSSL_ITEM attributes[],
257 int STORE_delete_private_key(STORE *e, OPENSSL_ITEM attributes[],
259 void *STORE_list_private_key_start(STORE *e, OPENSSL_ITEM attributes[],
264 EVP_PKEY *STORE_get_public_key(STORE *e, OPENSSL_ITEM attributes[],
266 int STORE_store_public_key(STORE *e, EVP_PKEY *data, OPENSSL_ITEM attributes[],
271 int STORE_revoke_public_key(STORE *e, OPENSSL_ITEM attributes[],
273 int STORE_delete_public_key(STORE *e, OPENSSL_ITEM attributes[],
275 void *STORE_list_public_key_start(STORE *e, OPENSSL_ITEM attributes[],
280 X509_CRL *STORE_generate_crl(STORE *e, OPENSSL_ITEM attributes[],
282 X509_CRL *STORE_get_crl(STORE *e, OPENSSL_ITEM attributes[],
284 int STORE_store_crl(STORE *e, X509_CRL *data, OPENSSL_ITEM attributes[],
289 int STORE_delete_crl(STORE *e, OPENSSL_ITEM attributes[],
291 void *STORE_list_crl_start(STORE *e, OPENSSL_ITEM attributes[],
296 int STORE_store_number(STORE *e, BIGNUM *data, OPENSSL_ITEM attributes[],
301 BIGNUM *STORE_get_number(STORE *e, OPENSSL_ITEM attributes[],
303 int STORE_delete_number(STORE *e, OPENSSL_ITEM attributes[],
305 int STORE_store_arbitrary(STORE *e, BUF_MEM *data, OPENSSL_ITEM attributes[],
310 BUF_MEM *STORE_get_arbitrary(STORE *e, OPENSSL_ITEM attributes[],
312 int STORE_delete_arbitrary(STORE *e, OPENSSL_ITEM attributes[],
323 typedef STORE_OBJECT *(*STORE_GENERATE_OBJECT_FUNC_PTR)(STORE *, STORE_OBJECT_TYPES type, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
324 typedef STORE_OBJECT *(*STORE_GET_OBJECT_FUNC_PTR)(STORE *, STORE_OBJECT_TYPES type, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
325 typedef void *(*STORE_START_OBJECT_FUNC_PTR)(STORE *, STORE_OBJECT_TYPES type, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
328 typedef int (*STORE_HANDLE_OBJECT_FUNC_PTR)(STORE *, STORE_OBJECT_TYPES type, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
329 typedef int (*STORE_STORE_OBJECT_FUNC_PTR)(STORE *, STORE_OBJECT_TYPES type, STORE_OBJECT *data, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
331 typedef int (*STORE_GENERIC_FUNC_PTR)(STORE *, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
377 void *STORE_parse_attrs_start(OPENSSL_ITEM *attributes);
412 /* Check if the set of attributes in a is within the range of attributes
415 /* Check if the set of attributes in a are also set in b. */