Searched refs:p7 (Results 1 - 25 of 109) sorted by relevance

12345

/external/openssl/crypto/pkcs7/
H A Dpk7_enc.c67 PKCS7_in_bio(PKCS7 *p7,BIO *in);
68 PKCS7_out_bio(PKCS7 *p7,BIO *out);
70 PKCS7_add_signer(PKCS7 *p7,X509 *cert,EVP_PKEY *key);
71 PKCS7_cipher(PKCS7 *p7,EVP_CIPHER *cipher);
73 PKCS7_Init(PKCS7 *p7); variable
74 PKCS7_Update(PKCS7 *p7); variable
75 PKCS7_Finish(PKCS7 *p7); variable
H A Dpk7_lib.c65 long PKCS7_ctrl(PKCS7 *p7, int cmd, long larg, char *parg) argument
70 nid=OBJ_obj2nid(p7->type);
77 ret=p7->detached=(int)larg;
78 if (ret && PKCS7_type_is_data(p7->d.sign->contents))
81 os=p7->d.sign->contents->d.data;
83 p7->d.sign->contents->d.data = NULL;
95 if(!p7->d.sign || !p7->d.sign->contents->d.ptr)
99 p7->detached = ret;
115 int PKCS7_content_new(PKCS7 *p7, in argument
129 PKCS7_set_content(PKCS7 *p7, PKCS7 *p7_data) argument
159 PKCS7_set_type(PKCS7 *p7, int type) argument
229 PKCS7_set0_type_other(PKCS7 *p7, int type, ASN1_TYPE *other) argument
236 PKCS7_add_signer(PKCS7 *p7, PKCS7_SIGNER_INFO *psi) argument
295 PKCS7_add_certificate(PKCS7 *p7, X509 *x509) argument
330 PKCS7_add_crl(PKCS7 *p7, X509_CRL *crl) argument
413 PKCS7_add_signature(PKCS7 *p7, X509 *x509, EVP_PKEY *pkey, const EVP_MD *dgst) argument
442 PKCS7_set_digest(PKCS7 *p7, const EVP_MD *md) argument
491 PKCS7_add_recipient(PKCS7 *p7, X509 *x509) argument
505 PKCS7_add_recipient_info(PKCS7 *p7, PKCS7_RECIP_INFO *ri) argument
581 PKCS7_cert_from_signer_info(PKCS7 *p7, PKCS7_SIGNER_INFO *si) argument
591 PKCS7_set_cipher(PKCS7 *p7, const EVP_CIPHER *cipher) argument
621 PKCS7_stream(unsigned char ***boundary, PKCS7 *p7) argument
[all...]
H A Dpk7_mime.c64 int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags) argument
66 return i2d_ASN1_bio_stream(out, (ASN1_VALUE *)p7, in, flags,
70 int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BIO *in, int flags) argument
72 return PEM_write_bio_ASN1_stream(out, (ASN1_VALUE *) p7, in, flags,
77 int SMIME_write_PKCS7(BIO *bio, PKCS7 *p7, BIO *data, int flags) argument
80 int ctype_nid = OBJ_obj2nid(p7->type);
82 mdalgs = p7->d.sign->md_algs;
89 return SMIME_write_ASN1(bio, (ASN1_VALUE *)p7, data, flags,
H A Dpk7_smime.c66 static int pkcs7_copy_existing_digest(PKCS7 *p7, PKCS7_SIGNER_INFO *si);
71 PKCS7 *p7; local
74 if(!(p7 = PKCS7_new()))
80 if (!PKCS7_set_type(p7, NID_pkcs7_signed))
83 if (!PKCS7_content_new(p7, NID_pkcs7_data))
86 if (pkey && !PKCS7_sign_add_signer(p7, signcert, pkey, NULL, flags))
96 if (!PKCS7_add_certificate(p7, sk_X509_value(certs, i)))
102 PKCS7_set_detached(p7, 1);
105 return p7;
107 if (PKCS7_final(p7, dat
115 PKCS7_final(PKCS7 *p7, BIO *data, int flags) argument
161 PKCS7_sign_add_signer(PKCS7 *p7, X509 *signcert, EVP_PKEY *pkey, const EVP_MD *md, int flags) argument
235 pkcs7_copy_existing_digest(PKCS7 *p7, PKCS7_SIGNER_INFO *si) argument
266 PKCS7_verify(PKCS7 *p7, STACK_OF(X509) *certs, X509_STORE *store, BIO *indata, BIO *out, int flags) argument
495 PKCS7 *p7; local
534 PKCS7_decrypt(PKCS7 *p7, EVP_PKEY *pkey, X509 *cert, BIO *data, int flags) argument
[all...]
H A Dpkcs7.h242 #define PKCS7_is_detached(p7) (PKCS7_type_is_signed(p7) && PKCS7_get_detached(p7))
280 PKCS7 *d2i_PKCS7_fp(FILE *fp,PKCS7 **p7);
281 int i2d_PKCS7_fp(FILE *fp,PKCS7 *p7);
283 PKCS7 *PKCS7_dup(PKCS7 *p7);
284 PKCS7 *d2i_PKCS7_bio(BIO *bp,PKCS7 **p7);
285 int i2d_PKCS7_bio(BIO *bp,PKCS7 *p7);
286 int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags);
287 int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BI
331 STACK_OF(PKCS7_SIGNER_INFO) *PKCS7_get_signer_info(PKCS7 *p7); variable
[all...]
H A Dpk7_doit.c71 static int PKCS7_type_is_other(PKCS7* p7) argument
75 int nid=OBJ_obj2nid(p7->type);
95 static ASN1_OCTET_STRING *PKCS7_get_octet_string(PKCS7 *p7) argument
97 if ( PKCS7_type_is_data(p7))
98 return p7->d.data;
99 if ( PKCS7_type_is_other(p7) && p7->d.other
100 && (p7->d.other->type == V_ASN1_OCTET_STRING))
101 return p7->d.other->value.octet_string;
263 BIO *PKCS7_dataInit(PKCS7 *p7, BI argument
420 PKCS7_dataDecode(PKCS7 *p7, EVP_PKEY *pkey, BIO *in_bio, X509 *pcert) argument
744 PKCS7_dataFinal(PKCS7 *p7, BIO *bio) argument
966 PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx, BIO *bio, PKCS7 *p7, PKCS7_SIGNER_INFO *si) argument
1020 PKCS7_signatureVerify(BIO *bio, PKCS7 *p7, PKCS7_SIGNER_INFO *si, X509 *x509) argument
1149 PKCS7_get_issuer_and_serial(PKCS7 *p7, int idx) argument
[all...]
/external/llvm/test/MC/ARM/
H A Dthumb-only-conditionals.s22 cdpgt p7, #1, c1, c1, c1, #4
23 cdp2gt p7, #1, c1, c1, c1, #4
25 @ CHECK-NEXT: cdpgt p7, #1, c1, c1, c1, #4
26 @ CHECK-NEXT: cdp2gt p7, #1, c1, c1, c1, #4
36 mcrrle p7, #15, r5, r4, c1
37 mcrr2gt p7, #15, r5, r4, c1
39 @ CHECK-NEXT: mcrrle p7, #15, r5, r4, c1
40 @ CHECK-NEXT: mcrr2gt p7, #15, r5, r4, c1
50 mrrclo p7, #1, r5, r4, c1
51 mrrc2lo p7, #
[all...]
/external/openssl/include/openssl/
H A Dpkcs7.h242 #define PKCS7_is_detached(p7) (PKCS7_type_is_signed(p7) && PKCS7_get_detached(p7))
280 PKCS7 *d2i_PKCS7_fp(FILE *fp,PKCS7 **p7);
281 int i2d_PKCS7_fp(FILE *fp,PKCS7 *p7);
283 PKCS7 *PKCS7_dup(PKCS7 *p7);
284 PKCS7 *d2i_PKCS7_bio(BIO *bp,PKCS7 **p7);
285 int i2d_PKCS7_bio(BIO *bp,PKCS7 *p7);
286 int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags);
287 int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BI
331 STACK_OF(PKCS7_SIGNER_INFO) *PKCS7_get_signer_info(PKCS7 *p7); variable
[all...]
/external/openssl/crypto/pkcs12/
H A Dp12_add.c137 PKCS7 *p7; local
138 if (!(p7 = PKCS7_new())) {
142 p7->type = OBJ_nid2obj(NID_pkcs7_data);
143 if (!(p7->d.data = M_ASN1_OCTET_STRING_new())) {
148 if (!ASN1_item_pack(sk, ASN1_ITEM_rptr(PKCS12_SAFEBAGS), &p7->d.data)) {
152 return p7;
156 STACK_OF(PKCS12_SAFEBAG) *PKCS12_unpack_p7data(PKCS7 *p7)
158 if(!PKCS7_type_is_data(p7))
163 return ASN1_item_unpack(p7->d.data, ASN1_ITEM_rptr(PKCS12_SAFEBAGS));
172 PKCS7 *p7; local
[all...]
H A Dp12_npas.c109 PKCS7 *p7, *p7new; local
117 p7 = sk_PKCS7_value(asafes, i);
118 bagnid = OBJ_obj2nid(p7->type);
120 bags = PKCS12_unpack_p7data(p7);
122 bags = PKCS12_unpack_p7encdata(p7, oldpass, -1);
123 if (!alg_get(p7->d.encrypted->enc_data->algorithm,
H A Dp12_crt.c279 PKCS7 *p7 = NULL; local
300 p7 = PKCS12_pack_p7data(bags);
302 p7 = PKCS12_pack_p7encdata(nid_safe, pass, -1, NULL, 0,
304 if (!p7)
307 if (!sk_PKCS7_push(*psafes, p7))
319 if (p7)
320 PKCS7_free(p7);
/external/openssl/apps/
H A Dpkcs7.c85 PKCS7 *p7=NULL; local
206 p7=d2i_PKCS7_bio(in,NULL);
208 p7=PEM_read_bio_PKCS7(in,NULL,NULL,NULL);
214 if (p7 == NULL)
241 PKCS7_print_ctx(out, p7, 0, NULL);
248 i=OBJ_obj2nid(p7->type);
252 certs=p7->d.sign->cert;
253 crls=p7->d.sign->crl;
256 certs=p7->d.signed_and_enveloped->cert;
257 crls=p7
[all...]
H A Dcrl2p7.c92 PKCS7 *p7 = NULL; local
217 if ((p7=PKCS7_new()) == NULL) goto end;
219 p7->type=OBJ_nid2obj(NID_pkcs7_signed);
220 p7->d.sign=p7s;
229 crl=NULL; /* now part of p7 for OPENSSL_freeing */
267 i=i2d_PKCS7_bio(out,p7);
269 i=PEM_write_bio_PKCS7(out,p7);
284 if (p7 != NULL) PKCS7_free(p7);
H A Dsmime.c99 PKCS7 *p7 = NULL; local
623 p7 = SMIME_read_PKCS7(in, &indata);
625 p7 = PEM_read_bio_PKCS7(in, NULL, NULL, NULL);
627 p7 = d2i_PKCS7_bio(in, NULL);
634 if (!p7)
686 p7 = PKCS7_encrypt(encerts, in, cipher, flags);
704 p7 = PKCS7_sign(NULL, NULL, other, in, flags);
705 if (!p7)
722 if (!PKCS7_sign_add_signer(p7, signer, key,
733 if (!PKCS7_final(p7, i
[all...]
/external/chromium_org/v8/src/ia32/
H A Dsimulator-ia32.h24 #define CALL_GENERATED_REGEXP_CODE(entry, p0, p1, p2, p3, p4, p5, p6, p7, p8) \
25 (FUNCTION_CAST<regexp_matcher>(entry)(p0, p1, p2, p3, p4, p5, p6, p7, p8))
/external/chromium_org/v8/src/x64/
H A Dsimulator-x64.h24 #define CALL_GENERATED_REGEXP_CODE(entry, p0, p1, p2, p3, p4, p5, p6, p7, p8) \
25 (FUNCTION_CAST<regexp_matcher>(entry)(p0, p1, p2, p3, p4, p5, p6, p7, p8))
/external/chromium_org/v8/src/x87/
H A Dsimulator-x87.h24 #define CALL_GENERATED_REGEXP_CODE(entry, p0, p1, p2, p3, p4, p5, p6, p7, p8) \
25 (FUNCTION_CAST<regexp_matcher>(entry)(p0, p1, p2, p3, p4, p5, p6, p7, p8))
/external/clang/test/SemaCXX/
H A Dcxx11-ast-print.cpp33 // CHECK: const char *p7 = 123_quux;
34 const char *p7 = 123_quux; variable
/external/llvm/unittests/ADT/
H A DMakeUniqueTest.cpp47 auto p7 = make_unique<std::tuple<int, int, int, int, int, int, int>>( local
49 EXPECT_TRUE((bool)p7);
50 EXPECT_EQ(std::make_tuple(0, 1, 2, 3, 4, 5, 6), *p7);
/external/valgrind/main/memcheck/tests/
H A Dleak-cases.c14 // p7 -?-> AAA ---> BBB (y)DR, (n)DL / P (y)IR, (n)IL / P
64 Node* p7; variable
84 p7 = mk(mk(NULL)); // Case 7: 16/1 possibly lost
85 p7++; // 16/1 possibly lost
/external/ceres-solver/include/ceres/internal/
H A Dmanual_constructor.h159 const T5& p5, const T6& p6, const T7& p7) {
160 new(space()) Type(p1, p2, p3, p4, p5, p6, p7);
166 const T5& p5, const T6& p6, const T7& p7, const T8& p8) {
167 new(space()) Type(p1, p2, p3, p4, p5, p6, p7, p8);
173 const T5& p5, const T6& p6, const T7& p7, const T8& p8,
175 new(space()) Type(p1, p2, p3, p4, p5, p6, p7, p8, p9);
181 const T5& p5, const T6& p6, const T7& p7, const T8& p8,
183 new(space()) Type(p1, p2, p3, p4, p5, p6, p7, p8, p9, p10);
190 const T5& p5, const T6& p6, const T7& p7, const T8& p8,
192 new(space()) Type(p1, p2, p3, p4, p5, p6, p7, p
158 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6, const T7& p7) argument
165 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6, const T7& p7, const T8& p8) argument
172 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6, const T7& p7, const T8& p8, const T9& p9) argument
180 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6, const T7& p7, const T8& p8, const T9& p9, const T10& p10) argument
189 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6, const T7& p7, const T8& p8, const T9& p9, const T10& p10, const T11& p11) argument
[all...]
/external/openssl/crypto/bn/asm/
H A Dia64.S741 cmp.ltu p7,p0=r17,r16 }
746 (p7) add carry2=1,carry2 }
747 { .mfi; cmp.ltu p7,p0=r18,r17
752 (p7) add carry2=1,carry2 }
753 { .mfi; cmp.ltu p7,p0=r18,carry1
757 (p7) add carry2=1,carry2 }
800 cmp.ltu p7,p0=r17,r16 }
806 (p7) add carry2=1,carry2 }
807 { .mfi; cmp.ltu p7,p0=r18,r17
815 (p7) ad
[all...]
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Dsyscall.cc268 intptr_t p7) {
282 const intptr_t args[8] = {p0, p1, p2, p3, p4, p5, p6, p7};
286 DCHECK_EQ(p7, 0) << " Support for syscalls with more than six arguments not "
260 Call(int nr, intptr_t p0, intptr_t p1, intptr_t p2, intptr_t p3, intptr_t p4, intptr_t p5, intptr_t p6, intptr_t p7) argument
/external/chromium_org/sandbox/win/src/
H A Dcrosscall_server.h192 void* p7);
195 void* p7, void* p8);
198 void* p7, void* p8, void* p9);
/external/chromium_org/base/memory/
H A Dmanual_constructor.h100 const T5& p5, const T6& p6, const T7& p7) {
101 new(space_.void_data()) Type(p1, p2, p3, p4, p5, p6, p7);
107 const T5& p5, const T6& p6, const T7& p7, const T8& p8) {
108 new(space_.void_data()) Type(p1, p2, p3, p4, p5, p6, p7, p8);
99 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6, const T7& p7) argument
106 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6, const T7& p7, const T8& p8) argument

Completed in 472 milliseconds

12345