• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/crypto/store/

Lines Matching refs:attributes

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