• Home
  • Raw
  • Download

Lines Matching refs:attributes

254 X509 *STORE_get_certificate(STORE *s, OPENSSL_ITEM attributes[],  in STORE_get_certificate()  argument
264 attributes, parameters); in STORE_get_certificate()
280 int STORE_store_certificate(STORE *s, X509 *data, OPENSSL_ITEM attributes[], in STORE_store_certificate() argument
304 object, attributes, parameters); in STORE_store_certificate()
335 int STORE_revoke_certificate(STORE *s, OPENSSL_ITEM attributes[], in STORE_revoke_certificate() argument
342 attributes, parameters)) in STORE_revoke_certificate()
351 int STORE_delete_certificate(STORE *s, OPENSSL_ITEM attributes[], in STORE_delete_certificate() argument
358 attributes, parameters)) in STORE_delete_certificate()
367 void *STORE_list_certificate_start(STORE *s, OPENSSL_ITEM attributes[], in STORE_list_certificate_start() argument
376 STORE_OBJECT_TYPE_X509_CERTIFICATE, attributes, parameters); in STORE_list_certificate_start()
438 EVP_PKEY *STORE_generate_key(STORE *s, OPENSSL_ITEM attributes[], in STORE_generate_key() argument
448 attributes, parameters); in STORE_generate_key()
464 EVP_PKEY *STORE_get_private_key(STORE *s, OPENSSL_ITEM attributes[], in STORE_get_private_key() argument
474 attributes, parameters); in STORE_get_private_key()
490 int STORE_store_private_key(STORE *s, EVP_PKEY *data, OPENSSL_ITEM attributes[], in STORE_store_private_key() argument
521 attributes, parameters); in STORE_store_private_key()
552 int STORE_revoke_private_key(STORE *s, OPENSSL_ITEM attributes[], in STORE_revoke_private_key() argument
561 attributes, parameters); in STORE_revoke_private_key()
572 int STORE_delete_private_key(STORE *s, OPENSSL_ITEM attributes[], in STORE_delete_private_key() argument
579 attributes, parameters)) in STORE_delete_private_key()
588 void *STORE_list_private_key_start(STORE *s, OPENSSL_ITEM attributes[], in STORE_list_private_key_start() argument
597 attributes, parameters); in STORE_list_private_key_start()
659 EVP_PKEY *STORE_get_public_key(STORE *s, OPENSSL_ITEM attributes[], in STORE_get_public_key() argument
669 attributes, parameters); in STORE_get_public_key()
685 int STORE_store_public_key(STORE *s, EVP_PKEY *data, OPENSSL_ITEM attributes[], in STORE_store_public_key() argument
716 attributes, parameters); in STORE_store_public_key()
747 int STORE_revoke_public_key(STORE *s, OPENSSL_ITEM attributes[], in STORE_revoke_public_key() argument
756 attributes, parameters); in STORE_revoke_public_key()
767 int STORE_delete_public_key(STORE *s, OPENSSL_ITEM attributes[], in STORE_delete_public_key() argument
774 attributes, parameters)) in STORE_delete_public_key()
783 void *STORE_list_public_key_start(STORE *s, OPENSSL_ITEM attributes[], in STORE_list_public_key_start() argument
792 attributes, parameters); in STORE_list_public_key_start()
854 X509_CRL *STORE_generate_crl(STORE *s, OPENSSL_ITEM attributes[], in STORE_generate_crl() argument
864 attributes, parameters); in STORE_generate_crl()
880 X509_CRL *STORE_get_crl(STORE *s, OPENSSL_ITEM attributes[], in STORE_get_crl() argument
890 attributes, parameters); in STORE_get_crl()
906 int STORE_store_crl(STORE *s, X509_CRL *data, OPENSSL_ITEM attributes[], in STORE_store_crl() argument
930 attributes, parameters); in STORE_store_crl()
961 int STORE_delete_crl(STORE *s, OPENSSL_ITEM attributes[], in STORE_delete_crl() argument
968 attributes, parameters)) in STORE_delete_crl()
977 void *STORE_list_crl_start(STORE *s, OPENSSL_ITEM attributes[], in STORE_list_crl_start() argument
986 attributes, parameters); in STORE_list_crl_start()
1048 int STORE_store_number(STORE *s, BIGNUM *data, OPENSSL_ITEM attributes[], in STORE_store_number() argument
1068 attributes, parameters); in STORE_store_number()
1099 BIGNUM *STORE_get_number(STORE *s, OPENSSL_ITEM attributes[], in STORE_get_number() argument
1108 object = s->meth->get_object(s, STORE_OBJECT_TYPE_NUMBER, attributes, in STORE_get_number()
1122 int STORE_delete_number(STORE *s, OPENSSL_ITEM attributes[], in STORE_delete_number() argument
1128 if (!s->meth->delete_object(s, STORE_OBJECT_TYPE_NUMBER, attributes, in STORE_delete_number()
1138 int STORE_store_arbitrary(STORE *s, BUF_MEM *data, OPENSSL_ITEM attributes[], in STORE_store_arbitrary() argument
1158 attributes, parameters); in STORE_store_arbitrary()
1189 BUF_MEM *STORE_get_arbitrary(STORE *s, OPENSSL_ITEM attributes[], in STORE_get_arbitrary() argument
1199 attributes, parameters); in STORE_get_arbitrary()
1212 int STORE_delete_arbitrary(STORE *s, OPENSSL_ITEM attributes[], in STORE_delete_arbitrary() argument
1218 if (!s->meth->delete_object(s, STORE_OBJECT_TYPE_ARBITRARY, attributes, in STORE_delete_arbitrary()
1537 OPENSSL_ITEM *attributes; member
1539 void *STORE_parse_attrs_start(OPENSSL_ITEM *attributes) in STORE_parse_attrs_start() argument
1541 if (attributes) in STORE_parse_attrs_start()
1546 context->attributes = attributes; in STORE_parse_attrs_start()
1559 if (context && context->attributes) in STORE_parse_attrs_next()
1563 while(context->attributes in STORE_parse_attrs_next()
1564 && context->attributes->code != STORE_ATTR_OR in STORE_parse_attrs_next()
1565 && context->attributes->code != STORE_ATTR_END) in STORE_parse_attrs_next()
1567 switch(context->attributes->code) in STORE_parse_attrs_next()
1580 context->attributes->code, in STORE_parse_attrs_next()
1581 context->attributes->value, in STORE_parse_attrs_next()
1582 context->attributes->value_size); in STORE_parse_attrs_next()
1597 context->attributes->code, in STORE_parse_attrs_next()
1598 context->attributes->value, in STORE_parse_attrs_next()
1599 context->attributes->value_size); in STORE_parse_attrs_next()
1611 context->attributes->code, in STORE_parse_attrs_next()
1612 context->attributes->value); in STORE_parse_attrs_next()
1623 context->attributes->code, in STORE_parse_attrs_next()
1624 context->attributes->value); in STORE_parse_attrs_next()
1627 context->attributes++; in STORE_parse_attrs_next()
1629 if (context->attributes->code == STORE_ATTR_OR) in STORE_parse_attrs_next()
1630 context->attributes++; in STORE_parse_attrs_next()
1633 while(context->attributes in STORE_parse_attrs_next()
1634 && context->attributes->code != STORE_ATTR_OR in STORE_parse_attrs_next()
1635 && context->attributes->code != STORE_ATTR_END) in STORE_parse_attrs_next()
1636 context->attributes++; in STORE_parse_attrs_next()
1637 if (context->attributes->code == STORE_ATTR_OR) in STORE_parse_attrs_next()
1638 context->attributes++; in STORE_parse_attrs_next()
1648 if (context && context->attributes) in STORE_parse_attrs_end()
1651 OPENSSL_ITEM *attributes = context->attributes; in STORE_parse_attrs_end()
1664 if (context && context->attributes) in STORE_parse_attrs_endp()
1666 return context->attributes->code == STORE_ATTR_END; in STORE_parse_attrs_endp()