HomeSort by relevance Sort by last modified time
    Searched full:pkcs12 (Results 26 - 50 of 196) sorted by null

12 3 4 5 6 7 8

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Pkcs7Sign/
Readme.md 72 openssl pkcs12 -export -out TestCert.pfx -inkey TestCert.key -in TestCert.crt
73 openssl pkcs12 -in TestCert.pfx -nodes -out TestCert.pem
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
PKCS12ParametersGenerator.java 15 * RSA's PKCS12 Page</a>
75 * generation of a derived key ala PKCS12 V1.0.
  /external/curl/tests/certs/scripts/
genserv.sh 90 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
  /libcore/luni/src/test/java/libcore/java/security/cert/
OldPKIXParametersTest.java 182 KeyStore store = KeyStore.getInstance("PKCS12");
192 store = KeyStore.getInstance("PKCS12");
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseBlockCipher.java 533 // BEGIN Android-changed: Don't use PKCS12 with missing IV.
534 // If the key is a BCPBE one without an IV, ignore the fact that the scheme is PKCS12.
535 // if (scheme == PKCS12 || key instanceof PKCS12Key)
536 if ((scheme == PKCS12 || key instanceof PKCS12Key) && !isBCPBEKeyWithoutIV(key))
537 // END Android-changed: Don't use PKCS12 with missing IV.
546 throw new InvalidKeyException("PKCS12 requires a SecretKey/PBEKey");
582 // param = PBE.Util.makePBEParameters(k.getEncoded(), PKCS12, digest, keySizeInBits, ivLength * 8, pbeSpec, cipher.getAlgorithmName());
588 throw new InvalidKeyException("Algorithm requires a PBE key suitable for PKCS12");
593 param = PBE.Util.makePBEParameters(k.getEncoded(), PKCS12, digest, keySizeInBits, ivLength * 8, pbeSpec, cipher.getAlgorithmName());
    [all...]
PBE.java 38 // PBE Based encryption constants - by default we do PKCS12 with SHA-1
55 static final int PKCS12 = 2;
149 else if (type == PKCS12)
502 if (type == PKCS12)
  /libcore/ojluni/src/main/java/java/security/
PKCS12Attribute.java 35 * An attribute associated with a PKCS12 keystore entry.
51 * Constructs a PKCS12 attribute from its name and value.
103 * Constructs a PKCS12 attribute from its ASN.1 DER encoding.
DomainLoadStoreParameter.java 99 * keystoreType="PKCS12"
  /development/samples/KeyChainDemo/
_index.html 3 <p>The source code for this demo app shows how to install a PKCS12 key chain stored in the assets folder,
  /external/boringssl/src/tool/
tool.cc 51 { "pkcs12", DoPKCS12 },
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
PBEParametersGenerator.java 145 * PKCS12 (unicode, big endian, 2 zero pad bytes at the end).
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
DESede.java 222 super(new CBCBlockCipher(new DESedeEngine()), PKCS12, SHA1, 192, 8);
234 super(new CBCBlockCipher(new DESedeEngine()), PKCS12, SHA1, 128, 8);
246 super("PBEwithSHAandDES3Key-CBC", PKCSObjectIdentifiers.pbeWithSHAAnd3_KeyTripleDES_CBC, true, PKCS12, SHA1, 192, 64);
258 super("PBEwithSHAandDES2Key-CBC", PKCSObjectIdentifiers.pbeWithSHAAnd2_KeyTripleDES_CBC, true, PKCS12, SHA1, 128, 64);
RC2.java 121 super("PBEwithSHAand128BitRC2-CBC", PKCSObjectIdentifiers.pbeWithSHAAnd128BitRC2_CBC, true, PKCS12, SHA1, 128, 64);
133 super("PBEwithSHAand40BitRC2-CBC", PKCSObjectIdentifiers.pbeWithSHAAnd40BitRC2_CBC, true, PKCS12, SHA1, 40, 64);
169 super(new CBCBlockCipher(new RC2Engine()), PKCS12, SHA1, 128, 8);
181 super(new CBCBlockCipher(new RC2Engine()), PKCS12, SHA1, 40, 8);
497 // for KeyStore.PKCS12
  /frameworks/base/wifi/java/android/net/wifi/hotspot2/
ConfigParser.java 57 private static final String TYPE_PKCS12 = "application/x-pkcs12";
127 * Content-Type: application/x-pkcs12
195 // Parse PKCS12 data for client private key and certificate chain.
450 KeyStore ks = KeyStore.getInstance("PKCS12");
  /development/samples/KeyChainDemo/src/com/example/android/keychain/
KeyChainDemoActivity.java 43 * The file name of the PKCS12 file used
48 * The pass phrase of the PKCS12 file
  /external/wpa_supplicant_8/wpa_supplicant/doc/docbook/
wpa_supplicant.conf.sgml 220 openssl pkcs12 -in example.pfx -out user.pem -clcerts
222 openssl pkcs12 -in example.pfx -out ca.pem -cacerts -nokeys
  /external/python/cpython2/PCbuild/
libeay.vcxproj 606 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_add.c" />
607 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_asn.c" />
608 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_attr.c" />
609 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_crpt.c" />
611 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_crt.c" />
613 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_decr.c" />
615 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_init.c" />
617 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_key.c" />
618 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_kiss.c" />
619 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_mutl.c" /
    [all...]
  /external/python/cpython3/PCbuild/
libeay.vcxproj 606 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_add.c" />
607 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_asn.c" />
608 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_attr.c" />
609 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_crpt.c" />
611 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_crt.c" />
613 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_decr.c" />
615 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_init.c" />
617 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_key.c" />
618 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_kiss.c" />
619 <ClCompile Include="$(opensslDir)crypto\pkcs12\p12_mutl.c" /
    [all...]
  /external/boringssl/src/crypto/obj/
objects.txt 335 !Alias pkcs12 pkcs 12
336 !Alias pkcs12-pbeids pkcs12 1
339 pkcs12-pbeids 1 : PBE-SHA1-RC4-128 : pbeWithSHA1And128BitRC4
341 pkcs12-pbeids 2 : PBE-SHA1-RC4-40 : pbeWithSHA1And40BitRC4
343 pkcs12-pbeids 3 : PBE-SHA1-3DES : pbeWithSHA1And3-KeyTripleDES-CBC
345 pkcs12-pbeids 4 : PBE-SHA1-2DES : pbeWithSHA1And2-KeyTripleDES-CBC
347 pkcs12-pbeids 5 : PBE-SHA1-RC2-128 : pbeWithSHA1And128BitRC2-CBC
349 pkcs12-pbeids 6 : PBE-SHA1-RC2-40 : pbeWithSHA1And40BitRC2-CBC
351 !Alias pkcs12-Version1 pkcs12 1
    [all...]
  /external/curl/docs/examples/
curlx.c 7 coming from a pkcs12 file
97 #include <openssl/pkcs12.h>
138 PKCS12 *p12;
  /packages/apps/CertInstaller/res/values-am/
strings.xml 28 <string name="p12_description" msgid="4128352087331630024">"????? ?PKCS12 ????????"</string>
  /packages/apps/CertInstaller/res/values-ar/
strings.xml 28 <string name="p12_description" msgid="4128352087331630024">"????????? ?? ???? ?????? PKCS12."</string>
  /packages/apps/CertInstaller/res/values-as/
strings.xml 28 <string name="p12_description" msgid="4128352087331630024">"PKCS12 ???????? ??????????????"</string>
  /packages/apps/CertInstaller/res/values-be/
strings.xml 28 <string name="p12_description" msgid="4128352087331630024">"??????????? ? ???????? ?????? PKCS12."</string>
  /packages/apps/CertInstaller/res/values-bg/
strings.xml 28 <string name="p12_description" msgid="4128352087331630024">"??????????? ? ????????? ?? ??????? ??? ?????? PKCS12"</string>

Completed in 4124 milliseconds

12 3 4 5 6 7 8