HomeSort by relevance Sort by last modified time
    Searched full:privatekey (Results 226 - 250 of 699) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/jdk/jdk8/linux-x86/jre/lib/ext/
sunec.jar 
  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/sign/
SigningExtension.java 35 import java.security.PrivateKey;
137 @Nonnull PrivateKey privateKey,
142 "CERT", privateKey, ImmutableList.of(certificate)).build();
  /cts/tests/tests/keystore/src/android/keystore/cts/
KeyPairGeneratorTest.java 36 import java.security.PrivateKey;
    [all...]
KeyStoreTest.java 310 public static void setPrivateKeyNoPassword(KeyStore ks, String alias, PrivateKeyEntry privateKey)
312 ks.setKeyEntry(alias, privateKey.getPrivateKey(), null, privateKey.getCertificateChain());
322 PrivateKeyEntry privateKey)
325 privateKey.getPrivateKey(),
327 privateKey.getCertificateChain());
338 PrivateKeyEntry privateKey)
341 privateKey.getPrivateKey().getEncoded(),
342 privateKey.getCertificateChain());
399 PrivateKeyEntry privateKey = (PrivateKeyEntry) actual
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/pkcs12/
PKCS12KeyStoreSpi.java 20 import java.security.PrivateKey;
560 if (!(key instanceof PrivateKey))
565 if ((key instanceof PrivateKey) && (chain == null))
610 protected PrivateKey unwrapKey(
634 return (PrivateKey)cipher.unwrap(data, "", Cipher.PRIVATE_KEY);
642 return (PrivateKey)cipher.unwrap(data, "", Cipher.PRIVATE_KEY);
880 PrivateKey privKey = unwrapKey(eIn.getEncryptionAlgorithm(), eIn.getEncryptedData(), password, wrongPKCS12Zero);
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/tls/
handshake_server_test.go 62 testConfig.Certificates[0].PrivateKey = testRSAPrivateKey
64 testConfig.Certificates[1].PrivateKey = testRSAPrivateKey
160 serverConfig.Certificates[0].PrivateKey = testECDSAPrivateKey
190 serverConfig.Certificates[0].PrivateKey = testECDSAPrivateKey
387 PrivateKey: testRSAPrivateKey,
748 config.Certificates[0].PrivateKey = testECDSAPrivateKey
931 PrivateKey: testECDSAPrivateKey,
1001 func benchmarkHandshakeServer(b *testing.B, cipherSuite uint16, curve CurveID, cert []byte, key crypto.PrivateKey) {
1007 config.Certificates[0].PrivateKey = key
    [all...]
  /prebuilts/go/linux-x86/src/crypto/tls/
handshake_server_test.go 62 testConfig.Certificates[0].PrivateKey = testRSAPrivateKey
64 testConfig.Certificates[1].PrivateKey = testRSAPrivateKey
160 serverConfig.Certificates[0].PrivateKey = testECDSAPrivateKey
190 serverConfig.Certificates[0].PrivateKey = testECDSAPrivateKey
387 PrivateKey: testRSAPrivateKey,
748 config.Certificates[0].PrivateKey = testECDSAPrivateKey
931 PrivateKey: testECDSAPrivateKey,
1001 func benchmarkHandshakeServer(b *testing.B, cipherSuite uint16, curve CurveID, cert []byte, key crypto.PrivateKey) {
1007 config.Certificates[0].PrivateKey = key
    [all...]
  /cts/tests/tests/networksecurityconfig/networksecurityconfig-downloadmanager/src/android/security/net/config/cts/
DownloadManagerTest.java 39 import java.security.PrivateKey;
147 PrivateKey key;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseWrapCipher.java 10 import java.security.PrivateKey;
367 PrivateKey privKey = BouncyCastleProvider.getPrivateKey(in);
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
CertInstallerHelper.java 43 import java.security.PrivateKey;
63 private PrivateKey mUserKey; // private key
  /external/tpm2/
CryptoEngine.h 169 TPM2B_ECC_PARAMETER *privateKey; // Pointer to the private key
182 TPM2B *privateKey; // The private exponent (not a prime)
  /frameworks/base/core/java/android/net/
SSLCertificateSocketFactory.java 32 import java.security.PrivateKey;
98 private PrivateKey mChannelIdPrivateKey = null;
378 * @param privateKey private key (enables TLS Channel ID) or {@code null} for no key (disables
384 public void setChannelIdPrivateKey(PrivateKey privateKey) {
385 mChannelIdPrivateKey = privateKey;
  /frameworks/base/keystore/java/android/security/
KeyChain.java 45 import java.security.PrivateKey;
489 * Returns the {@code PrivateKey} for the requested alias, or null
504 public static PrivateKey getPrivateKey(@NonNull Context context, @NonNull String alias)
622 * specific {@code PrivateKey} type indicated by {@code algorithm} (e.g.,
634 * {@code PrivateKey} of the given {@code algorithm} to the device once
642 * PrivateKey key = ...; // private key from KeyChain
  /libcore/ojluni/src/main/java/java/security/
KeyStoreSpi.java 130 * <p>If the given key is of type {@code java.security.PrivateKey},
143 * {@code java.security.PrivateKey}).
158 * {@code java.security.PrivateKey},
170 * {@code java.security.PrivateKey}).
483 if (key instanceof PrivateKey) {
485 return new KeyStore.PrivateKeyEntry((PrivateKey)key, chain);
  /prebuilts/go/darwin-x86/src/crypto/rsa/
rsa_test.go 91 priv := &PrivateKey{
105 func testKeyBasics(t *testing.T, priv *PrivateKey) {
143 var test2048Key *PrivateKey
146 test2048Key = &PrivateKey{
184 priv := &PrivateKey{
249 private := new(PrivateKey)
  /prebuilts/go/linux-x86/src/crypto/rsa/
rsa_test.go 91 priv := &PrivateKey{
105 func testKeyBasics(t *testing.T, priv *PrivateKey) {
143 var test2048Key *PrivateKey
146 test2048Key = &PrivateKey{
184 priv := &PrivateKey{
249 private := new(PrivateKey)
  /prebuilts/tools/common/m2/repository/io/netty/netty-handler/4.1.6.Final/
netty-handler-4.1.6.Final.jar 
  /external/conscrypt/common/src/main/java/org/conscrypt/
ConscryptEngine.java 74 import java.security.PrivateKey;
280 * Sets the {@link PrivateKey} to be used for TLS Channel ID by this client engine.
284 * @param privateKey private key (enables TLS Channel ID) or {@code null} for no key (disables
292 void setChannelIdPrivateKey(PrivateKey privateKey) {
303 if (privateKey == null) {
312 if (privateKey instanceof ECKey) {
313 ecParams = ((ECKey) privateKey).getParams();
321 OpenSSLKey.fromECPrivateKeyForTLSStackOnly(privateKey, ecParams);
    [all...]
  /external/conscrypt/android/src/main/java/org/conscrypt/
Platform.java 37 import java.security.PrivateKey;
431 public static OpenSSLKey wrapRsaKey(PrivateKey javaKey) {
451 // This may happen if the PrivateKey was not created by the
502 // The PrivateKey is probably rotten for some reason.
508 Log.e(TAG, "Error during conversion of privatekey instance: " + javaKey.toString(), e);
    [all...]
  /external/conscrypt/platform/src/test/java/org/conscrypt/
TrustedCertificateStoreTest.java 30 import java.security.PrivateKey;
646 PrivateKey privateKey = getPrivate().getPrivateKey();
648 X509Certificate ca1 = TestKeyStore.createCa(publicKey, privateKey, name);
650 X509Certificate ca2 = TestKeyStore.createCa(publicKey, privateKey, name);
    [all...]
  /prebuilts/go/darwin-x86/pkg/darwin_amd64/
crypto.a 30  SHA384<%  SHA512<% MD5SHA1<%RIPEMD160<%SHA3_224<%SHA3_256<%SHA3_384<%SHA3_512<%SHA512_224<%SHA512_256<%BLAKE2s_256<% BLAKE2b_256<%"BLAKE2b_384<%|SBLAKE2b_512<%& tRegisterHash<h·1>f·2 PublicKey PrivateKey  Signer PublicBSign ? ReaderRead" "&|Srand" digest ?SignerOpts<opts"signature&|SJ DecrypterbB
60 .this?"type."".Decrypter?rand?type.io.Reader?msg?type.[]uint8?opts?*type."".DecrypterOpts?plaintext?err?type.error?Tgclocals·bbcf374cc6a75d9b54305a4553a2e96f?&"".Decrypter.Public?~r1?"type."".PublicKey?Tgclocals·c55e845a0a62e9baae6c740db5a20866?&"".(*Hash).HashFunc?"runtime.panicwrap?type.*"".Hash?Tgclocals·524d71b8d4b4126db12e7a6de3370d94?"".(*Hash).Size?"".(*Hash).New?Tgclocals·e6397a44f8e1b6e77d0f200b4fba5269?("".(*Hash).Available? "".Signer.Public?type."".Signer?"".Signer.Sign? digest?$type."".SignerOpts?signature?,"".SignerOpts.HashFunc?Tgclocals·522734ad228da40e2256ba19cf2bc72c?0go.info."".Hash.HashFunc?go.info."".Hash?2go.range."".Hash.HashFunc?bgo.string."crypto: Size of unknown hash function"?(go.info."".Hash.Size?go.info.int?*go.range."".Hash.Size?&go.info."".Hash.New?"go.info.hash.Hash?(go.range."".Hash.New?2go.info."".Hash.Available?go.info.bool?4go.range."".Hash.Available?rgo.string."crypto: RegisterHash of unknown hash function"?.go.info."".RegisterHash?0go.info.func() hash.Hash?0go.range."".RegisterHash?go.info."".init? go.range."".init?&go.constinfo.crypto?"".statictmp_2?.type.[]func() hash.Hash?type.[20]uint8?type.uint8?8go.info."".Decrypter.Decrypt?(go.info."".Decrypter?"go.info.io.Reader?go.info.[]uint8?0go.info."".DecrypterOpts?go.info.error?:go.range."".Decrypter.Decrypt?6go.info."".Decrypter.Public?(go.info."".PublicKey?8go.range."".Decrypter.Public?"runtime.gcbits.01?0type..namedata.*[]uint8-?type.*[]uint8? runtime.algarray?Jtype..namedata.*crypto.DecrypterOpts.?,type.*"".DecrypterOpts?"runtime.gcbits.03?(type..importpath."".??type..namedata.*func(io.Reader, []uint8, crypto.DecrypterOpts) ([]uint8, error)-??type.*func(io.Reader, []uint8, "".DecrypterOpts) ([]uint8, error)??type.func(io.Reader, []uint8, "".DecrypterOpts) ([]uint8, error)?Btype..namedata.*crypto.PublicKey.?$type.*"".PublicKey?Ptype..namedata.*func() crypto.PublicKey-?2type.*func() "".PublicKey?0type.func() "".PublicKey?Btype..namedata.*crypto.Decrypter.?$type.*"".Decrypter?.type..namedata.Decrypt.?,type..namedata.Public.?6go.info."".(*Hash).HashFunc? go.info.*"".Hash?8go.range."".(*Hash).HashFunc?.go.info."".(*Hash).Size?0go.range."".(*Hash).Size?,go.info."".(*Hash).New?.go.range."".(*Hash).New?8go.info."".(*Hash).Available?:go.range."".(*Hash).Available?8type..namedata.*crypto.Hash.?Ptype..namedata.*func(*crypto.Hash) bool-?2type.*func(*"".Hash) bool?0type.func(*"".Hash) bool?^type..namedata.*func(*crypto.Hash) crypto.Hash-?8type.*func(*"".Hash) "".Hash?6type.func(*"".Hash) "".Hash?Ztype..namedata.*func(*crypto.Hash) hash.Hash-?<type.*func(*"".Hash) hash.Hash?:type.func(*"".Hash) hash.Hash?Ntype..namedata.*func(*crypto.Hash) int-?0type.*func(*"".Hash) int?.type.func(*"".Hash) int?2type..namedata.Available.?8type..namedata.*func() bool-?"type.*func() bool? type.func() bool?0type..namedata.HashFunc.?Ftype..namedata.*func() crypto.Hash-?(type.*func() "".Hash?&type.func() "".Hash?&type..namedata.New.?Btype..namedata.*func() hash.Hash-?,type.*func() hash.Hash?(type..namedata.Size.?6type..namedata.*func() int-? type.*func() int?type.func() int?runtime.gcbits.?Ntype..namedata.*func(crypto.Hash) bool-?0type.*func("".Hash) bool?.type.func("".Hash) bool?\type..namedata.*func(crypto.Hash) crypto.Hash-?6type.*func("".Hash) "".Hash?4type.func("".Hash) "".Hash?Xtype..namedata.*func(crypto.Hash) hash.Hash-?:type.*func("".Hash) hash.Hash?8type.func("".Hash) hash.Hash?Ltype..namedata.*func(crypto.Hash) int-?.type.*func("".Hash) int?,type.func("".Hash) int?Dtype..namedata.*crypto.PrivateKey.?&type.*"".PrivateKey?$type."".PrivateKey?0go.info."".Signer.Public?"go.info."".Signer?2go.range."".Signer.Public?,go.info."".Signer.Sign?*go.info."".SignerOpts?.go.range."".Signer.Sign?<go.info."".SignerOpts.HashFunc?>go.range."".SignerOpts.HashFunc?Dtype..namedata.*crypto.SignerOpts.?&type.*"".SignerOpts??type..namedata.*func(io.Reader, []uint8, crypto.SignerOpts) ([]uint8, error)-?|type.*func(io.Reader, []uint8, "".SignerOpts) ([]uint8, error)?ztype.func(io.Reader, []uint8, "".SignerOpts) ([]uint8, error)?<type..namedata.*crypto.Signer.?type.*"".Signer?(type..namedata.Sign.? type..hashfunc20?,runtime.memhash_varlen?type..eqfunc20?.runtime.memequal_varlen?type..alg20?4type..namedata.*[20]uint8-?type.*[20]uint8?Ftype..namedata.*[]func() hash.Hash-?0type.*[]func() hash.Hash?,type..importpath.hash.?(type..importpath.io.?2type..importpath.strconv.???J<"H?D$H?D$?  ( eH? %H;aviH??H?l$H?l$H?D$ H??v3H??s-H? H?H9?s?H?D$(H?l$H???? H?H?$H?H?D$? ??0?/0%/?" -S%eH? %H;a??H??`H?l$XH?l$XH?D$hH??vKH??sEH? H?H9?s+H??H??t)H???H?$H?L$H?D$pH?L$xH?l$XH??`?? H?$?H?D$H?L$H?$H?H?T$H?D$!H?L$H?D$ H?H?D$(H?D$0?H?D$8H?L$@H?D$HH?L$PH?H?$H?D$HH?D$?H?D$H?L$H?$H?L$? ???????W????
130 crypto.SHA3_256 crypto.SHA3_384 crypto.SHA3_512 crypto.SHA512_224crypto.SHA512_256crypto.BLAKE2s_256crypto.BLAKE2b_256crypto.BLAKE2b_384crypto.BLAKE2b_512crypto.maxHash%- 0@$ 0@ 0@"".Decrypter.Decrypt?.this?rand?msg? opts?8plaintext??err??"".Decrypter.Public?.this?~r1?*[]uint8???i6?~.8*crypto.DecrypterOpts{R)?6crypto?_??@*func(io.Reader, []uint8, crypto.DecrypterOpts) ([]uint8, error)K?"?6 ??S3*crypto.PublicKey?f??6?8A*func() crypto.PublicKeyK? ?6T?,3*crypto.Decrypter??6DecryptPublic,?? "".(*Hash).HashFunc?.this?~r0?"".(*Hash).Size?.this?~r0?"".(*Hash).New?.this?~r0?"".(*Hash).Available?.this?~r0? *crypto.Hash*func(*crypto.Hash) bool?8?T6??+3*func(*crypto.Hash) crypto.Hash??-6???/3*func(*crypto.Hash) hash.HashM?^?6??3*func(*crypto.Hash) intKAK6?v3 Available *func() bool???6T?x3HashFunc*func() crypto.Hash??6????3New*func() hash.Hash@?6?|?!3Size *func() intQ???6?9?3}?L%6*func(crypto.Hash) boolFB?v6c?B?3*func(crypto.Hash) crypto.HashLqZ?6BR??3*func(crypto.Hash) hash.HashW6??66h?<3*func(crypto.Hash) int}?{6L? 43m?u?*crypto.PrivateKey1??6??^"".Signer.Public?.this?~r1?"".Signer.Sign?.this?rand?digest? opts?8signature??err??"".SignerOpts.HashFunc?.this?~r1?*crypto.SignerOpts5~?6????=*func(io.Reader, []uint8, crypto.SignerOpts) ([]uint8, error)??c?6?@`3*crypto.SignerIo?6Signy?? 
  /prebuilts/go/darwin-x86/pkg/darwin_amd64_race/
crypto.a 30  SHA384<%  SHA512<% MD5SHA1<%RIPEMD160<%SHA3_224<%SHA3_256<%SHA3_384<%SHA3_512<%SHA512_224<%SHA512_256<%BLAKE2s_256<% BLAKE2b_256<%"BLAKE2b_384<%|SBLAKE2b_512<%& tRegisterHash<h·1>f·2 PublicKey PrivateKey  Signer PublicBSign ? ReaderRead" "&|Srand" digest ?SignerOpts<opts"signature&|SJ DecrypterbB
60 .this?"type."".Decrypter?rand?type.io.Reader?msg?type.[]uint8?opts?*type."".DecrypterOpts?plaintext?err?type.error?.autotmp_11?.autotmp_14?.autotmp_15?.autotmp_12?.autotmp_13?Tgclocals·34887a987dba073053db8e494725798f?Tgclocals·8ab7ebdc23ce88599b56a075af17f0c0?&"".Decrypter.Public?~r1?"type."".PublicKey?Tgclocals·48fa3758e632e1b97d3b7251e66d0b97?Tgclocals·f83413e1f0916265015171ba5b95f669?&"".(*Hash).HashFunc?"runtime.panicwrap?type.*"".Hash?Tgclocals·524d71b8d4b4126db12e7a6de3370d94?"".(*Hash).Size?"".(*Hash).New?Tgclocals·b9af6bbc417a82ce0ce1d467edbbc832?("".(*Hash).Available? "".Signer.Public?type."".Signer?"".Signer.Sign? digest?$type."".SignerOpts?signature?,"".SignerOpts.HashFunc?Tgclocals·522734ad228da40e2256ba19cf2bc72c?2go.cuinfo.producer.crypto?0go.info."".Hash.HashFunc?go.info.uintptr?go.info."".Hash?2go.range."".Hash.HashFunc?bgo.string."crypto: Size of unknown hash function"?(go.info."".Hash.Size?go.info.int?*go.range."".Hash.Size?&go.info."".Hash.New?"go.info.hash.Hash?(go.range."".Hash.New?2go.info."".Hash.Available?go.info.bool?4go.range."".Hash.Available?rgo.string."crypto: RegisterHash of unknown hash function"?.go.info."".RegisterHash?0go.info.func() hash.Hash?0go.range."".RegisterHash?go.info."".init? go.range."".init?&go.constinfo.crypto?"".statictmp_2?.type.[]func() hash.Hash?type.[20]uint8?type.uint8?8go.info."".Decrypter.Decrypt?(go.info."".Decrypter?"go.info.io.Reader?go.info.[]uint8?0go.info."".DecrypterOpts?go.info.error?:go.range."".Decrypter.Decrypt?6go.info."".Decrypter.Public?(go.info."".PublicKey?8go.range."".Decrypter.Public?"runtime.gcbits.01?0type..namedata.*[]uint8-?type.*[]uint8? runtime.algarray?Jtype..namedata.*crypto.DecrypterOpts.?,type.*"".DecrypterOpts?"runtime.gcbits.03?(type..importpath."".??type..namedata.*func(io.Reader, []uint8, crypto.DecrypterOpts) ([]uint8, error)-??type.*func(io.Reader, []uint8, "".DecrypterOpts) ([]uint8, error)??type.func(io.Reader, []uint8, "".DecrypterOpts) ([]uint8, error)?Btype..namedata.*crypto.PublicKey.?$type.*"".PublicKey?Ptype..namedata.*func() crypto.PublicKey-?2type.*func() "".PublicKey?0type.func() "".PublicKey?Btype..namedata.*crypto.Decrypter.?$type.*"".Decrypter?.type..namedata.Decrypt.?,type..namedata.Public.?6go.info."".(*Hash).HashFunc? go.info.*"".Hash?8go.range."".(*Hash).HashFunc?.go.info."".(*Hash).Size?0go.range."".(*Hash).Size?,go.info."".(*Hash).New?.go.range."".(*Hash).New?8go.info."".(*Hash).Available?:go.range."".(*Hash).Available?8type..namedata.*crypto.Hash.?Ptype..namedata.*func(*crypto.Hash) bool-?2type.*func(*"".Hash) bool?0type.func(*"".Hash) bool?^type..namedata.*func(*crypto.Hash) crypto.Hash-?8type.*func(*"".Hash) "".Hash?6type.func(*"".Hash) "".Hash?Ztype..namedata.*func(*crypto.Hash) hash.Hash-?<type.*func(*"".Hash) hash.Hash?:type.func(*"".Hash) hash.Hash?Ntype..namedata.*func(*crypto.Hash) int-?0type.*func(*"".Hash) int?.type.func(*"".Hash) int?2type..namedata.Available.?8type..namedata.*func() bool-?"type.*func() bool? type.func() bool?0type..namedata.HashFunc.?Ftype..namedata.*func() crypto.Hash-?(type.*func() "".Hash?&type.func() "".Hash?&type..namedata.New.?Btype..namedata.*func() hash.Hash-?(type..namedata.Size.?6type..namedata.*func() int-? type.*func() int?type.func() int?runtime.gcbits.?Ntype..namedata.*func(crypto.Hash) bool-?0type.*func("".Hash) bool?.type.func("".Hash) bool?\type..namedata.*func(crypto.Hash) crypto.Hash-?6type.*func("".Hash) "".Hash?4type.func("".Hash) "".Hash?Xtype..namedata.*func(crypto.Hash) hash.Hash-?:type.*func("".Hash) hash.Hash?8type.func("".Hash) hash.Hash?Ltype..namedata.*func(crypto.Hash) int-?.type.*func("".Hash) int?,type.func("".Hash) int?Dtype..namedata.*crypto.PrivateKey.?&type.*"".PrivateKey?$type."".PrivateKey?0go.info."".Signer.Public?"go.info."".Signer?2go.range."".Signer.Public?,go.info."".Signer.Sign?*go.info."".SignerOpts?.go.range."".Signer.Sign?<go.info."".SignerOpts.HashFunc?>go.range."".SignerOpts.HashFunc?Dtype..namedata.*crypto.SignerOpts.?&type.*"".SignerOpts??type..namedata.*func(io.Reader, []uint8, crypto.SignerOpts) ([]uint8, error)-?|type.*func(io.Reader, []uint8, "".SignerOpts) ([]uint8, error)?ztype.func(io.Reader, []uint8, "".SignerOpts) ([]uint8, error)?<type..namedata.*crypto.Signer.?type.*"".Signer?(type..namedata.Sign.? type..hashfunc20?,runtime.memhash_varlen?type..eqfunc20?.runtime.memequal_varlen?type..alg20?4type..namedata.*[20]uint8-?type.*[20]uint8?Ftype..namedata.*[]func() hash.Hash-?0type.*[]func() hash.Hash?,type..importpath.hash.?(type..importpath.io.?2type..importpath.strconv.???? ?<"eH? %H;av5H??H?l$H?l$H?D$H?$??H?D$H?D$ H?l$H????? 0K(+K&eH? %H;a??H?? H?l$H?l$H?D$ H?$?H?D$(H??v{H??suH?H?$?H?H? H?T$(H9?sFH?H?$?H?H? H?T$(H9?s"?H?D$?H?D$H?D$0H?l$H?? ?? H?H?$H?H?D$? ??$???@??@%?
147 crypto.SHA3_256 crypto.SHA3_384 crypto.SHA3_512 crypto.SHA512_224crypto.SHA512_256crypto.BLAKE2s_256crypto.BLAKE2b_256crypto.BLAKE2b_384crypto.BLAKE2b_512crypto.maxHash%- 0@$ 0@ 0@"".Decrypter.Decrypt?.fp?x.this?rand?msg? opts?8plaintext??err??"".Decrypter.Public?.fp?x.this?~r1?*[]uint8???i6?~.8*crypto.DecrypterOpts{R)?6crypto?_??@*func(io.Reader, []uint8, crypto.DecrypterOpts) ([]uint8, error)K?"?6 ??S3*crypto.PublicKey?f??6?8A*func() crypto.PublicKeyK? ?6T?,3*crypto.Decrypter??6DecryptPublic,?? "".(*Hash).HashFunc? ~r0?h.fp?x.this?~r0?"".(*Hash).Size?.fp?x.this?~r0?"".(*Hash).New?.fp?x.this?~r0?"".(*Hash).Available? ~r0?g h?h.fp?x.this?~r0? *crypto.Hash*func(*crypto.Hash) bool?8?T6??+3*func(*crypto.Hash) crypto.Hash??-6???/3*func(*crypto.Hash) hash.HashM?^?6??3*func(*crypto.Hash) intKAK6?v3 Available *func() bool???6T?x3HashFunc*func() crypto.Hash??6????3New*func() hash.Hash@?6?|?!3Size *func() intQ???6?9?3}?L%6*func(crypto.Hash) boolFB?v6c?B?3*func(crypto.Hash) crypto.HashLqZ?6BR??3*func(crypto.Hash) hash.HashW6??66h?<3*func(crypto.Hash) int}?{6L? 43m?u?*crypto.PrivateKey1??6??^"".Signer.Public?.fp?x.this?~r1?"".Signer.Sign?.fp?x.this?rand?digest? opts?8signature??err??"".SignerOpts.HashFunc?.fp?x.this?~r1?*crypto.SignerOpts5~?6????=*func(io.Reader, []uint8, crypto.SignerOpts) ([]uint8, error)??c?6?@`3*crypto.SignerIo?6Signy?? 
  /prebuilts/go/linux-x86/pkg/linux_amd64/
crypto.a 30  SHA384<%  SHA512<% MD5SHA1<%RIPEMD160<%SHA3_224<%SHA3_256<%SHA3_384<%SHA3_512<%SHA512_224<%SHA512_256<%BLAKE2s_256<% BLAKE2b_256<%"BLAKE2b_384<%|SBLAKE2b_512<%& tRegisterHash<h·1>f·2 PublicKey PrivateKey  Signer PublicBSign ? ReaderRead" "&|Srand" digest ?SignerOpts<opts"signature&|SJ DecrypterbB
60 .this?"type."".Decrypter?rand?type.io.Reader?msg?type.[]uint8?opts?*type."".DecrypterOpts?plaintext?err?type.error?Tgclocals·bbcf374cc6a75d9b54305a4553a2e96f?&"".Decrypter.Public?~r1?"type."".PublicKey?Tgclocals·c55e845a0a62e9baae6c740db5a20866?&"".(*Hash).HashFunc?"runtime.panicwrap?type.*"".Hash?Tgclocals·524d71b8d4b4126db12e7a6de3370d94?"".(*Hash).Size?"".(*Hash).New?Tgclocals·e6397a44f8e1b6e77d0f200b4fba5269?("".(*Hash).Available? "".Signer.Public?type."".Signer?"".Signer.Sign? digest?$type."".SignerOpts?signature?,"".SignerOpts.HashFunc?Tgclocals·522734ad228da40e2256ba19cf2bc72c?0go.info."".Hash.HashFunc?go.info."".Hash?2go.range."".Hash.HashFunc?bgo.string."crypto: Size of unknown hash function"?(go.info."".Hash.Size?go.info.int?*go.range."".Hash.Size?&go.info."".Hash.New?"go.info.hash.Hash?(go.range."".Hash.New?2go.info."".Hash.Available?go.info.bool?4go.range."".Hash.Available?rgo.string."crypto: RegisterHash of unknown hash function"?.go.info."".RegisterHash?0go.info.func() hash.Hash?0go.range."".RegisterHash?go.info."".init? go.range."".init?&go.constinfo.crypto?"".statictmp_2?.type.[]func() hash.Hash?type.[20]uint8?type.uint8?8go.info."".Decrypter.Decrypt?(go.info."".Decrypter?"go.info.io.Reader?go.info.[]uint8?0go.info."".DecrypterOpts?go.info.error?:go.range."".Decrypter.Decrypt?6go.info."".Decrypter.Public?(go.info."".PublicKey?8go.range."".Decrypter.Public?"runtime.gcbits.01?0type..namedata.*[]uint8-?type.*[]uint8? runtime.algarray?Jtype..namedata.*crypto.DecrypterOpts.?,type.*"".DecrypterOpts?"runtime.gcbits.03?(type..importpath."".??type..namedata.*func(io.Reader, []uint8, crypto.DecrypterOpts) ([]uint8, error)-??type.*func(io.Reader, []uint8, "".DecrypterOpts) ([]uint8, error)??type.func(io.Reader, []uint8, "".DecrypterOpts) ([]uint8, error)?Btype..namedata.*crypto.PublicKey.?$type.*"".PublicKey?Ptype..namedata.*func() crypto.PublicKey-?2type.*func() "".PublicKey?0type.func() "".PublicKey?Btype..namedata.*crypto.Decrypter.?$type.*"".Decrypter?.type..namedata.Decrypt.?,type..namedata.Public.?6go.info."".(*Hash).HashFunc? go.info.*"".Hash?8go.range."".(*Hash).HashFunc?.go.info."".(*Hash).Size?0go.range."".(*Hash).Size?,go.info."".(*Hash).New?.go.range."".(*Hash).New?8go.info."".(*Hash).Available?:go.range."".(*Hash).Available?8type..namedata.*crypto.Hash.?Ptype..namedata.*func(*crypto.Hash) bool-?2type.*func(*"".Hash) bool?0type.func(*"".Hash) bool?^type..namedata.*func(*crypto.Hash) crypto.Hash-?8type.*func(*"".Hash) "".Hash?6type.func(*"".Hash) "".Hash?Ztype..namedata.*func(*crypto.Hash) hash.Hash-?<type.*func(*"".Hash) hash.Hash?:type.func(*"".Hash) hash.Hash?Ntype..namedata.*func(*crypto.Hash) int-?0type.*func(*"".Hash) int?.type.func(*"".Hash) int?2type..namedata.Available.?8type..namedata.*func() bool-?"type.*func() bool? type.func() bool?0type..namedata.HashFunc.?Ftype..namedata.*func() crypto.Hash-?(type.*func() "".Hash?&type.func() "".Hash?&type..namedata.New.?Btype..namedata.*func() hash.Hash-?,type.*func() hash.Hash?(type..namedata.Size.?6type..namedata.*func() int-? type.*func() int?type.func() int?runtime.gcbits.?Ntype..namedata.*func(crypto.Hash) bool-?0type.*func("".Hash) bool?.type.func("".Hash) bool?\type..namedata.*func(crypto.Hash) crypto.Hash-?6type.*func("".Hash) "".Hash?4type.func("".Hash) "".Hash?Xtype..namedata.*func(crypto.Hash) hash.Hash-?:type.*func("".Hash) hash.Hash?8type.func("".Hash) hash.Hash?Ltype..namedata.*func(crypto.Hash) int-?.type.*func("".Hash) int?,type.func("".Hash) int?Dtype..namedata.*crypto.PrivateKey.?&type.*"".PrivateKey?$type."".PrivateKey?0go.info."".Signer.Public?"go.info."".Signer?2go.range."".Signer.Public?,go.info."".Signer.Sign?*go.info."".SignerOpts?.go.range."".Signer.Sign?<go.info."".SignerOpts.HashFunc?>go.range."".SignerOpts.HashFunc?Dtype..namedata.*crypto.SignerOpts.?&type.*"".SignerOpts??type..namedata.*func(io.Reader, []uint8, crypto.SignerOpts) ([]uint8, error)-?|type.*func(io.Reader, []uint8, "".SignerOpts) ([]uint8, error)?ztype.func(io.Reader, []uint8, "".SignerOpts) ([]uint8, error)?<type..namedata.*crypto.Signer.?type.*"".Signer?(type..namedata.Sign.? type..hashfunc20?,runtime.memhash_varlen?type..eqfunc20?.runtime.memequal_varlen?type..alg20?4type..namedata.*[20]uint8-?type.*[20]uint8?Ftype..namedata.*[]func() hash.Hash-?0type.*[]func() hash.Hash?,type..importpath.hash.?(type..importpath.io.?2type..importpath.strconv.???J<"H?D$H?D$?  ( dH? %H;aviH??H?l$H?l$H?D$ H??v3H??s-H? H?H9?s?H?D$(H?l$H???? H?H?$H?H?D$? ??0?/0%/?" -S%dH? %H;a??H??`H?l$XH?l$XH?D$hH??vKH??sEH? H?H9?s+H??H??t)H???H?$H?L$H?D$pH?L$xH?l$XH??`?? H?$?H?D$H?L$H?$H?H?T$H?D$!H?L$H?D$ H?H?D$(H?D$0?H?D$8H?L$@H?D$HH?L$PH?H?$H?D$HH?D$?H?D$H?L$H?$H?L$? ???????W????
130 crypto.SHA3_256 crypto.SHA3_384 crypto.SHA3_512 crypto.SHA512_224crypto.SHA512_256crypto.BLAKE2s_256crypto.BLAKE2b_256crypto.BLAKE2b_384crypto.BLAKE2b_512crypto.maxHash%- 0@$ 0@ 0@"".Decrypter.Decrypt?.this?rand?msg? opts?8plaintext??err??"".Decrypter.Public?.this?~r1?*[]uint8???i6?~.8*crypto.DecrypterOpts{R)?6crypto?_??@*func(io.Reader, []uint8, crypto.DecrypterOpts) ([]uint8, error)K?"?6 ??S3*crypto.PublicKey?f??6?8A*func() crypto.PublicKeyK? ?6T?,3*crypto.Decrypter??6DecryptPublic,?? "".(*Hash).HashFunc?.this?~r0?"".(*Hash).Size?.this?~r0?"".(*Hash).New?.this?~r0?"".(*Hash).Available?.this?~r0? *crypto.Hash*func(*crypto.Hash) bool?8?T6??+3*func(*crypto.Hash) crypto.Hash??-6???/3*func(*crypto.Hash) hash.HashM?^?6??3*func(*crypto.Hash) intKAK6?v3 Available *func() bool???6T?x3HashFunc*func() crypto.Hash??6????3New*func() hash.Hash@?6?|?!3Size *func() intQ???6?9?3}?L%6*func(crypto.Hash) boolFB?v6c?B?3*func(crypto.Hash) crypto.HashLqZ?6BR??3*func(crypto.Hash) hash.HashW6??66h?<3*func(crypto.Hash) int}?{6L? 43m?u?*crypto.PrivateKey1??6??^"".Signer.Public?.this?~r1?"".Signer.Sign?.this?rand?digest? opts?8signature??err??"".SignerOpts.HashFunc?.this?~r1?*crypto.SignerOpts5~?6????=*func(io.Reader, []uint8, crypto.SignerOpts) ([]uint8, error)??c?6?@`3*crypto.SignerIo?6Signy?? 
  /prebuilts/go/linux-x86/pkg/linux_amd64_race/
crypto.a 30  SHA384<%  SHA512<% MD5SHA1<%RIPEMD160<%SHA3_224<%SHA3_256<%SHA3_384<%SHA3_512<%SHA512_224<%SHA512_256<%BLAKE2s_256<% BLAKE2b_256<%"BLAKE2b_384<%|SBLAKE2b_512<%& tRegisterHash<h·1>f·2 PublicKey PrivateKey  Signer PublicBSign ? ReaderRead" "&|Srand" digest ?SignerOpts<opts"signature&|SJ DecrypterbB
60 .this?"type."".Decrypter?rand?type.io.Reader?msg?type.[]uint8?opts?*type."".DecrypterOpts?plaintext?err?type.error?.autotmp_11?.autotmp_14?.autotmp_15?.autotmp_12?.autotmp_13?Tgclocals·34887a987dba073053db8e494725798f?Tgclocals·8ab7ebdc23ce88599b56a075af17f0c0?&"".Decrypter.Public?~r1?"type."".PublicKey?Tgclocals·48fa3758e632e1b97d3b7251e66d0b97?Tgclocals·f83413e1f0916265015171ba5b95f669?&"".(*Hash).HashFunc?"runtime.panicwrap?type.*"".Hash?Tgclocals·524d71b8d4b4126db12e7a6de3370d94?"".(*Hash).Size?"".(*Hash).New?Tgclocals·b9af6bbc417a82ce0ce1d467edbbc832?("".(*Hash).Available? "".Signer.Public?type."".Signer?"".Signer.Sign? digest?$type."".SignerOpts?signature?,"".SignerOpts.HashFunc?Tgclocals·522734ad228da40e2256ba19cf2bc72c?2go.cuinfo.producer.crypto?0go.info."".Hash.HashFunc?go.info.uintptr?go.info."".Hash?2go.range."".Hash.HashFunc?bgo.string."crypto: Size of unknown hash function"?(go.info."".Hash.Size?go.info.int?*go.range."".Hash.Size?&go.info."".Hash.New?"go.info.hash.Hash?(go.range."".Hash.New?2go.info."".Hash.Available?go.info.bool?4go.range."".Hash.Available?rgo.string."crypto: RegisterHash of unknown hash function"?.go.info."".RegisterHash?0go.info.func() hash.Hash?0go.range."".RegisterHash?go.info."".init? go.range."".init?&go.constinfo.crypto?"".statictmp_2?.type.[]func() hash.Hash?type.[20]uint8?type.uint8?8go.info."".Decrypter.Decrypt?(go.info."".Decrypter?"go.info.io.Reader?go.info.[]uint8?0go.info."".DecrypterOpts?go.info.error?:go.range."".Decrypter.Decrypt?6go.info."".Decrypter.Public?(go.info."".PublicKey?8go.range."".Decrypter.Public?"runtime.gcbits.01?0type..namedata.*[]uint8-?type.*[]uint8? runtime.algarray?Jtype..namedata.*crypto.DecrypterOpts.?,type.*"".DecrypterOpts?"runtime.gcbits.03?(type..importpath."".??type..namedata.*func(io.Reader, []uint8, crypto.DecrypterOpts) ([]uint8, error)-??type.*func(io.Reader, []uint8, "".DecrypterOpts) ([]uint8, error)??type.func(io.Reader, []uint8, "".DecrypterOpts) ([]uint8, error)?Btype..namedata.*crypto.PublicKey.?$type.*"".PublicKey?Ptype..namedata.*func() crypto.PublicKey-?2type.*func() "".PublicKey?0type.func() "".PublicKey?Btype..namedata.*crypto.Decrypter.?$type.*"".Decrypter?.type..namedata.Decrypt.?,type..namedata.Public.?6go.info."".(*Hash).HashFunc? go.info.*"".Hash?8go.range."".(*Hash).HashFunc?.go.info."".(*Hash).Size?0go.range."".(*Hash).Size?,go.info."".(*Hash).New?.go.range."".(*Hash).New?8go.info."".(*Hash).Available?:go.range."".(*Hash).Available?8type..namedata.*crypto.Hash.?Ptype..namedata.*func(*crypto.Hash) bool-?2type.*func(*"".Hash) bool?0type.func(*"".Hash) bool?^type..namedata.*func(*crypto.Hash) crypto.Hash-?8type.*func(*"".Hash) "".Hash?6type.func(*"".Hash) "".Hash?Ztype..namedata.*func(*crypto.Hash) hash.Hash-?<type.*func(*"".Hash) hash.Hash?:type.func(*"".Hash) hash.Hash?Ntype..namedata.*func(*crypto.Hash) int-?0type.*func(*"".Hash) int?.type.func(*"".Hash) int?2type..namedata.Available.?8type..namedata.*func() bool-?"type.*func() bool? type.func() bool?0type..namedata.HashFunc.?Ftype..namedata.*func() crypto.Hash-?(type.*func() "".Hash?&type.func() "".Hash?&type..namedata.New.?Btype..namedata.*func() hash.Hash-?(type..namedata.Size.?6type..namedata.*func() int-? type.*func() int?type.func() int?runtime.gcbits.?Ntype..namedata.*func(crypto.Hash) bool-?0type.*func("".Hash) bool?.type.func("".Hash) bool?\type..namedata.*func(crypto.Hash) crypto.Hash-?6type.*func("".Hash) "".Hash?4type.func("".Hash) "".Hash?Xtype..namedata.*func(crypto.Hash) hash.Hash-?:type.*func("".Hash) hash.Hash?8type.func("".Hash) hash.Hash?Ltype..namedata.*func(crypto.Hash) int-?.type.*func("".Hash) int?,type.func("".Hash) int?Dtype..namedata.*crypto.PrivateKey.?&type.*"".PrivateKey?$type."".PrivateKey?0go.info."".Signer.Public?"go.info."".Signer?2go.range."".Signer.Public?,go.info."".Signer.Sign?*go.info."".SignerOpts?.go.range."".Signer.Sign?<go.info."".SignerOpts.HashFunc?>go.range."".SignerOpts.HashFunc?Dtype..namedata.*crypto.SignerOpts.?&type.*"".SignerOpts??type..namedata.*func(io.Reader, []uint8, crypto.SignerOpts) ([]uint8, error)-?|type.*func(io.Reader, []uint8, "".SignerOpts) ([]uint8, error)?ztype.func(io.Reader, []uint8, "".SignerOpts) ([]uint8, error)?<type..namedata.*crypto.Signer.?type.*"".Signer?(type..namedata.Sign.? type..hashfunc20?,runtime.memhash_varlen?type..eqfunc20?.runtime.memequal_varlen?type..alg20?4type..namedata.*[20]uint8-?type.*[20]uint8?Ftype..namedata.*[]func() hash.Hash-?0type.*[]func() hash.Hash?,type..importpath.hash.?(type..importpath.io.?2type..importpath.strconv.???? ?<"dH? %H;av5H??H?l$H?l$H?D$H?$??H?D$H?D$ H?l$H????? 0K(+K&dH? %H;a??H?? H?l$H?l$H?D$ H?$?H?D$(H??v{H??suH?H?$?H?H? H?T$(H9?sFH?H?$?H?H? H?T$(H9?s"?H?D$?H?D$H?D$0H?l$H?? ?? H?H?$H?H?D$? ??$???@??@%?
147 crypto.SHA3_256 crypto.SHA3_384 crypto.SHA3_512 crypto.SHA512_224crypto.SHA512_256crypto.BLAKE2s_256crypto.BLAKE2b_256crypto.BLAKE2b_384crypto.BLAKE2b_512crypto.maxHash%- 0@$ 0@ 0@"".Decrypter.Decrypt?.fp?x.this?rand?msg? opts?8plaintext??err??"".Decrypter.Public?.fp?x.this?~r1?*[]uint8???i6?~.8*crypto.DecrypterOpts{R)?6crypto?_??@*func(io.Reader, []uint8, crypto.DecrypterOpts) ([]uint8, error)K?"?6 ??S3*crypto.PublicKey?f??6?8A*func() crypto.PublicKeyK? ?6T?,3*crypto.Decrypter??6DecryptPublic,?? "".(*Hash).HashFunc? ~r0?h.fp?x.this?~r0?"".(*Hash).Size?.fp?x.this?~r0?"".(*Hash).New?.fp?x.this?~r0?"".(*Hash).Available? ~r0?g h?h.fp?x.this?~r0? *crypto.Hash*func(*crypto.Hash) bool?8?T6??+3*func(*crypto.Hash) crypto.Hash??-6???/3*func(*crypto.Hash) hash.HashM?^?6??3*func(*crypto.Hash) intKAK6?v3 Available *func() bool???6T?x3HashFunc*func() crypto.Hash??6????3New*func() hash.Hash@?6?|?!3Size *func() intQ???6?9?3}?L%6*func(crypto.Hash) boolFB?v6c?B?3*func(crypto.Hash) crypto.HashLqZ?6BR??3*func(crypto.Hash) hash.HashW6??66h?<3*func(crypto.Hash) int}?{6L? 43m?u?*crypto.PrivateKey1??6??^"".Signer.Public?.fp?x.this?~r1?"".Signer.Sign?.fp?x.this?rand?digest? opts?8signature??err??"".SignerOpts.HashFunc?.fp?x.this?~r1?*crypto.SignerOpts5~?6????=*func(io.Reader, []uint8, crypto.SignerOpts) ([]uint8, error)??c?6?@`3*crypto.SignerIo?6Signy?? 
  /tools/apksig/src/main/java/com/android/apksig/internal/apk/v1/
V1SchemeSigner.java 42 import java.security.PrivateKey;
88 public PrivateKey privateKey;
92 * {@link #privateKey}.
515 signature.initSign(signerConfig.privateKey);

Completed in 6262 milliseconds

1 2 3 4 5 6 7 8 91011>>