OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:attr_nid
(Results
1 - 4
of
4
) sorted by null
/external/openssl/crypto/pkcs12/
pkcs12.h
161
#define PKCS12_get_attr(bag,
attr_nid
) \
162
PKCS12_get_attr_gen(bag->attrib,
attr_nid
)
164
#define PKCS8_get_attr(p8,
attr_nid
) \
165
PKCS12_get_attr_gen(p8->attributes,
attr_nid
)
207
ASN1_TYPE *PKCS12_get_attr_gen(STACK_OF(X509_ATTRIBUTE) *attrs, int
attr_nid
);
variable
p12_attr.c
121
ASN1_TYPE *PKCS12_get_attr_gen(STACK_OF(X509_ATTRIBUTE) *attrs, int
attr_nid
)
128
if (OBJ_obj2nid (attrib->object) ==
attr_nid
) {
/external/openssl/include/openssl/
pkcs12.h
161
#define PKCS12_get_attr(bag,
attr_nid
) \
162
PKCS12_get_attr_gen(bag->attrib,
attr_nid
)
164
#define PKCS8_get_attr(p8,
attr_nid
) \
165
PKCS12_get_attr_gen(p8->attributes,
attr_nid
)
207
ASN1_TYPE *PKCS12_get_attr_gen(STACK_OF(X509_ATTRIBUTE) *attrs, int
attr_nid
);
variable
/external/openssl/apps/
pkcs12.c
903
int i,
attr_nid
;
local
915
attr_nid
= OBJ_obj2nid(attr->object);
917
if(
attr_nid
== NID_undef) {
920
} else BIO_printf(out, "%s: ", OBJ_nid2ln(
attr_nid
));
Completed in 131 milliseconds