Searched refs:p12 (Results 1 - 21 of 21) sorted by relevance

/external/llvm/test/MC/ARM/
H A Dgas-compl-copr-reg.s3 @ CHECK: ldc p12, c4, [r0, #4] @ encoding: [0x01,0x4c,0x90,0xed]
6 ldc p12, cr4, [r0, #4]
10 @ CHECK: ldc p12, c4, [r0, #4] @ encoding: [0x01,0x4c,0x90,0xed]
13 ldc p12, cr4, [r0, #4]
H A Dthumb-only-conditionals.s44 mrc2ne p12, #3, r3, c3, c4
47 @ CHECK-NEXT: mrc2ne p12, #3, r3, c3, c4
H A Dbasic-arm-instructions.s661 cdp2 p12, #0, c6, c12, c0, #7
665 @ CHECK: cdp2 p12, #0, c6, c12, c0, #7 @ encoding: [0xe0,0x6c,0x0c,0xfe]
1085 ldc p12, c4, [r0, #4]
1098 ldclo p12, c4, [r0, #4]
1126 @ CHECK: ldc p12, c4, [r0, #4] @ encoding: [0x01,0x4c,0x90,0xed]
1139 @ CHECK: ldclo p12, c4, [r0, #4] @ encoding: [0x01,0x4c,0x90,0x3d]
2761 stc p12, c4, [r0, #4]
2774 stclo p12, c4, [r0, #4]
2802 @ CHECK: stc p12, c4, [r0, #4] @ encoding: [0x01,0x4c,0x80,0xed]
2815 @ CHECK: stclo p12, c
[all...]
H A Dbasic-thumb2-instructions.s753 ldc p12, c4, [r0, #4]
781 @ CHECK: ldc p12, c4, [r0, #4] @ encoding: [0x90,0xed,0x01,0x4c]
1523 mrc2 p12, #3, r3, c3, c4
1530 @ CHECK: mrc2 p12, #3, r3, c3, c4, #0 @ encoding: [0x73,0xfe,0x14,0x3c]
2662 stc p12, c4, [r0, #4]
2690 @ CHECK: stc p12, c4, [r0, #4] @ encoding: [0x80,0xed,0x01,0x4c]
/external/boringssl/include/openssl/
H A Dpkcs8.h156 * |p12|. The |out_pkey| and |out_cert| arguments must not be NULL and, on
163 OPENSSL_EXPORT int PKCS12_parse(const PKCS12 *p12, const char *password,
167 /* PKCS12_verify_mac returns one if |password| is a valid password for |p12|
175 OPENSSL_EXPORT int PKCS12_verify_mac(const PKCS12 *p12, const char *password,
178 /* PKCS12_free frees |p12| and its contents. */
179 OPENSSL_EXPORT void PKCS12_free(PKCS12 *p12);
/external/boringssl/src/include/openssl/
H A Dpkcs8.h156 * |p12|. The |out_pkey| and |out_cert| arguments must not be NULL and, on
163 OPENSSL_EXPORT int PKCS12_parse(const PKCS12 *p12, const char *password,
167 /* PKCS12_verify_mac returns one if |password| is a valid password for |p12|
175 OPENSSL_EXPORT int PKCS12_verify_mac(const PKCS12 *p12, const char *password,
178 /* PKCS12_free frees |p12| and its contents. */
179 OPENSSL_EXPORT void PKCS12_free(PKCS12 *p12);
/external/boringssl/src/crypto/pkcs8/
H A Dpkcs8_x509.c629 PKCS12 *p12; local
631 p12 = OPENSSL_malloc(sizeof(PKCS12));
632 if (!p12) {
636 p12->ber_bytes = OPENSSL_malloc(ber_len);
637 if (!p12->ber_bytes) {
638 OPENSSL_free(p12);
642 OPENSSL_memcpy(p12->ber_bytes, *ber_bytes, ber_len);
643 p12->ber_len = ber_len;
649 *out_p12 = p12;
652 return p12;
718 PKCS12_parse(const PKCS12 *p12, const char *password, EVP_PKEY **out_pkey, X509 **out_cert, STACK_OF(X509) **out_ca_certs) argument
759 PKCS12_verify_mac(const PKCS12 *p12, const char *password, int password_len) argument
784 PKCS12_free(PKCS12 *p12) argument
[all...]
H A Dpkcs12_test.cc921 bssl::UniquePtr<PKCS12> p12(d2i_PKCS12_bio(bio.get(), nullptr));
922 ASSERT_TRUE(p12);
924 ASSERT_FALSE(PKCS12_verify_mac(p12.get(), "badpass", 7));
925 ASSERT_TRUE(PKCS12_verify_mac(p12.get(), kPassword, sizeof(kPassword) - 1));
930 ASSERT_TRUE(PKCS12_parse(p12.get(), kPassword, &key, &cert, &ca_certs));
/external/opencv/cv/src/
H A Dcvposit.cpp303 float p12 = -(ata00 * ata12 - ata01 * ata02); local
320 b[n + k] = (p01 * a0 + p11 * a1 + p12 * a2) * inv_det;
321 b[2 * n + k] = (p02 * a0 + p12 * a1 + p22 * a2) * inv_det;
/external/curl/docs/examples/
H A Dcurlx.c103 " -p12 arg - tia file ",
121 ./curlx -p12 psy.p12 -envpass XX -in request -verbose -accesstype AD_DVCS
138 PKCS12 *p12; member in struct:sslctxparm_st
321 else if(!strcmp (*args, "-p12")) {
422 if(!(p.p12 = d2i_PKCS12_bio (p12bio, NULL))) {
428 if(!(PKCS12_parse (p.p12, p.pst, &(p.pkey), &(p.usercert), &(p.ca) ) )) {
/external/skia/tests/
H A DPathOpsQuadIntersectionTest.cpp500 SkDPoint p12 = quad1.ptAtT(t12); local
502 p10.fX, p10.fY, p1Seed.fX, p1Seed.fY, p12.fX, p12.fY);
H A DPathOpsCubicIntersectionTest.cpp608 SkDPoint p12 = c1.ptAtT(t12); local
610 p10.fX, p10.fY, p1Seed.fX, p1Seed.fY, p12.fX, p12.fY);
/external/curl/tests/certs/scripts/
H A Dgenserv.sh90 echo "$OPENSSL pkcs12 -export -des3 -out $PREFIX-sv.p12 -caname $CAPREFIX -name $PREFIX -inkey $PREFIX-sv.key -in $PREFIX-sv.crt -certfile $CAPREFIX-ca.crt "
92 $OPENSSL pkcs12 -export -des3 -out $PREFIX-sv.p12 -caname $CAPREFIX -name $PREFIX -inkey $PREFIX-sv.key -in $PREFIX-sv.crt -certfile $CAPREFIX-ca.crt
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dtls_openssl.c2461 static int tls_parse_pkcs12(struct tls_data *data, SSL *ssl, PKCS12 *p12, argument
2475 if (!PKCS12_parse(p12, passwd, &pkey, &cert, &certs)) {
2478 PKCS12_free(p12);
2582 PKCS12_free(p12);
2597 PKCS12 *p12; local
2603 p12 = d2i_PKCS12_fp(f, NULL);
2606 if (p12 == NULL) {
2612 return tls_parse_pkcs12(data, ssl, p12, passwd);
2616 "p12/pfx files");
2626 PKCS12 *p12; local
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Dtls_openssl.c2461 static int tls_parse_pkcs12(struct tls_data *data, SSL *ssl, PKCS12 *p12, argument
2475 if (!PKCS12_parse(p12, passwd, &pkey, &cert, &certs)) {
2478 PKCS12_free(p12);
2582 PKCS12_free(p12);
2597 PKCS12 *p12; local
2603 p12 = d2i_PKCS12_fp(f, NULL);
2606 if (p12 == NULL) {
2612 return tls_parse_pkcs12(data, ssl, p12, passwd);
2616 "p12/pfx files");
2626 PKCS12 *p12; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dtls_openssl.c2461 static int tls_parse_pkcs12(struct tls_data *data, SSL *ssl, PKCS12 *p12, argument
2475 if (!PKCS12_parse(p12, passwd, &pkey, &cert, &certs)) {
2478 PKCS12_free(p12);
2582 PKCS12_free(p12);
2597 PKCS12 *p12; local
2603 p12 = d2i_PKCS12_fp(f, NULL);
2606 if (p12 == NULL) {
2612 return tls_parse_pkcs12(data, ssl, p12, passwd);
2616 "p12/pfx files");
2626 PKCS12 *p12; local
[all...]
/external/curl/lib/vtls/
H A Dopenssl.c440 PKCS12 *p12; local
449 p12 = d2i_PKCS12_fp(f, NULL);
452 if(!p12) {
459 if(!PKCS12_parse(p12, key_passwd, &pri, &x509,
465 PKCS12_free(p12);
469 PKCS12_free(p12);
/external/skia/src/core/
H A DSkGeometry.cpp151 Sk2s p12 = interp(p1, p2, tt); local
155 dst[2] = to_point(interp(p01, p12, tt));
156 dst[3] = to_point(p12);
/external/swiftshader/third_party/LLVM/test/MC/ARM/
H A Dbasic-arm-instructions.s661 ldc p12, c4, [r0, #4]
674 ldclo p12, c4, [r0, #4]
702 @ CHECK: ldc p12, c4, [r0, #4] @ encoding: [0x01,0x4c,0x90,0xed]
715 @ CHECK: ldclo p12, c4, [r0, #4] @ encoding: [0x01,0x4c,0x90,0x3d]
1945 stc p12, c4, [r0, #4]
1958 stclo p12, c4, [r0, #4]
1986 @ CHECK: stc p12, c4, [r0, #4] @ encoding: [0x01,0x4c,0x80,0xed]
1999 @ CHECK: stclo p12, c4, [r0, #4] @ encoding: [0x01,0x4c,0x80,0x3d]
H A Dbasic-thumb2-instructions.s513 ldc p12, c4, [r0, #4]
541 @ CHECK: ldc p12, c4, [r0, #4] @ encoding: [0x90,0xed,0x01,0x4c]
2201 stc p12, c4, [r0, #4]
2229 @ CHECK: stc p12, c4, [r0, #4] @ encoding: [0x80,0xed,0x01,0x4c]
/external/v8/src/arm/
H A Dassembler-arm.h479 p12 = 12,

Completed in 2210 milliseconds