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

12 3 4 5 6 7 8 91011>>

  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
KeyAgreementThread.java 24 import java.security.PrivateKey;
33 private PrivateKey privateKey = null;
42 privateKey = keypair.getPrivate();
56 ka.init(privateKey);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
PrivateKeyInfo.java 53 ASN1Encodable privateKey)
56 this(algId, privateKey, null);
61 ASN1Encodable privateKey,
65 this.privKey = new DEROctetString(privateKey.toASN1Primitive().getEncoded(ASN1Encoding.DER));
139 * privateKey PrivateKey,
144 * PrivateKey ::= OCTET STRING
  /cts/tests/tests/keystore/src/android/keystore/cts/
RSACipherTest.java 20 import java.security.PrivateKey;
50 PrivateKey privateKey = key.getKeystoreBackedKeyPair().getPrivate();
63 cipher.init(Cipher.DECRYPT_MODE, privateKey);
83 PrivateKey privateKey = key.getKeystoreBackedKeyPair().getPrivate();
92 cipher.init(Cipher.DECRYPT_MODE, privateKey);
200 PrivateKey privateKey = key.getKeystoreBackedKeyPair().getPrivate();
201 BigInteger modulus = ((RSAKey) privateKey).getModulus()
    [all...]
  /external/conscrypt/testing/src/main/java/org/conscrypt/javax/net/ssl/
RandomPrivateKeyX509ExtendedKeyManager.java 23 import java.security.PrivateKey;
37 private final Map<String, PrivateKey> cachedKeys = new HashMap<String, PrivateKey>();
42 public PrivateKey getPrivateKey(String alias) {
43 PrivateKey originalPrivateKey = super.getPrivateKey(alias);
47 PrivateKey result;
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyPairTest.java 26 import java.security.PrivateKey;
52 static PrivateKey getPrivate() {
53 return new PrivateKey() {
69 * Test #1 for <code>KeyPair(PublicKey, PrivateKey)</code> constructor<br>
84 * Test #2 for <code>KeyPair(PublicKey, PrivateKey)</code> constructor<br>
109 PrivateKey pk = TestKeyPair.getPrivate();
KeyStorePrivateKeyEntryTest.java 25 import java.security.PrivateKey;
69 PrivateKey privateKey = keyPair.getPrivate();
74 privateKey, new Certificate[] { certificate });
  /libcore/support/src/test/java/libcore/javax/net/ssl/
RandomPrivateKeyX509ExtendedKeyManager.java 23 import java.security.PrivateKey;
38 private final Map<String, PrivateKey> cachedKeys = new HashMap<String, PrivateKey>();
45 public PrivateKey getPrivateKey(String alias) {
46 PrivateKey originalPrivateKey = super.getPrivateKey(alias);
51 PrivateKey result;
  /prebuilts/go/darwin-x86/src/crypto/x509/
pkcs8_test.go 52 keyType: reflect.TypeOf(&rsa.PrivateKey{}),
57 keyType: reflect.TypeOf(&ecdsa.PrivateKey{}),
63 keyType: reflect.TypeOf(&ecdsa.PrivateKey{}),
69 keyType: reflect.TypeOf(&ecdsa.PrivateKey{}),
75 keyType: reflect.TypeOf(&ecdsa.PrivateKey{}),
95 if ecKey, isEC := privKey.(*ecdsa.PrivateKey); isEC && ecKey.Curve != test.curve {
  /prebuilts/go/linux-x86/src/crypto/x509/
pkcs8_test.go 52 keyType: reflect.TypeOf(&rsa.PrivateKey{}),
57 keyType: reflect.TypeOf(&ecdsa.PrivateKey{}),
63 keyType: reflect.TypeOf(&ecdsa.PrivateKey{}),
69 keyType: reflect.TypeOf(&ecdsa.PrivateKey{}),
75 keyType: reflect.TypeOf(&ecdsa.PrivateKey{}),
95 if ecKey, isEC := privKey.(*ecdsa.PrivateKey); isEC && ecKey.Curve != test.curve {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
KeyFactory.java 6 import java.security.PrivateKey;
21 protected PrivateKey engineGeneratePrivate(
30 PrivateKey key = BouncyCastleProvider.getPrivateKey(info);
  /libcore/ojluni/src/main/java/java/security/interfaces/
ECPrivateKey.java 28 import java.security.PrivateKey;
36 * @see PrivateKey
41 public interface ECPrivateKey extends PrivateKey, ECKey {
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MySignature2.java 26 import java.security.PrivateKey;
51 protected void engineInitSign(PrivateKey privateKey)
PrivateKeyStub.java 25 import java.security.PrivateKey;
28 * Stub for interface PrivateKey tests
31 public class PrivateKeyStub implements PrivateKey {
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLSignatureRawRSA.java 21 import java.security.PrivateKey;
89 protected void engineInitSign(PrivateKey privateKey) throws InvalidKeyException {
90 if (privateKey instanceof OpenSSLRSAPrivateKey) {
91 OpenSSLRSAPrivateKey rsaPrivateKey = (OpenSSLRSAPrivateKey) privateKey;
93 } else if (privateKey instanceof RSAPrivateCrtKey) {
94 RSAPrivateCrtKey rsaPrivateKey = (RSAPrivateCrtKey) privateKey;
96 } else if (privateKey instanceof RSAPrivateKey) {
97 RSAPrivateKey rsaPrivateKey = (RSAPrivateKey) privateKey;
OpenSSLRSAPrivateKey.java 24 import java.security.PrivateKey;
32 * An implementation of {@link java.security.PrivateKey} for RSA keys which uses BoringSSL to
115 static OpenSSLKey wrapJCAPrivateKeyForTLSStackOnly(PrivateKey privateKey,
118 if (privateKey instanceof RSAKey) {
119 modulus = ((RSAKey) privateKey).getModulus();
124 throw new InvalidKeyException("RSA modulus not available. Private: " + privateKey
128 NativeCrypto.getRSAPrivateKeyWrapper(privateKey, modulus.toByteArray()), true);
  /frameworks/base/wifi/java/android/net/wifi/
ParcelUtil.java 24 import java.security.PrivateKey;
40 * Write a PrivateKey object |key| to the specified Parcel |dest|.
46 * For a null PrivateKey object, a null string will be written to |algorithm| and
47 * |encodedKey| will be skipped. Since a PrivateKey can only be constructed with
51 * @param key PrivateKey object to read from.
53 public static void writePrivateKey(Parcel dest, PrivateKey key) {
64 * Read/create a PrivateKey object from a specified Parcel object |in|.
69 * @return a PrivateKey object or null
71 public static PrivateKey readPrivateKey(Parcel in) {
  /prebuilts/go/darwin-x86/pkg/darwin_amd64/crypto/
ecdsa.a 144 2BSetStringBr? ? base·5BSetUint64B0?2BSignBB:SqrtB0?B2>B StringBB> SubB0?B2>B4>BTextBB>? ?BB:UnmarshalJSONB0>" text·3&UnmarshalTextB0>"?&XorB0?B2>B4>BlehmerGCDB0?B?>B?>B!modSqrt3Mod4PrimeB0?B2>B?>B'modSqrtTonelliShanksB0?B2>B?B?Bz·4?P? base·6B&setFromScannerBr?Pr·4?BXNBBBGxBGyB BitSizeName .?@curve·3>B x1·4>B y1·5>B x2·6>B y2·7>BB Double@?>B?>B?>BBIsOnCurve@curve·2>B2>B4>@?8@ScalarBaseMult@?>"?:BBScalarMult@?>B Bx·4>B By·5>"?:BBaddJacobian@curve·4> B x1·5>B y1·6>B z1·7>B x2·8>B y2·9>B z2·10>BBB#affineFromJacobian@?>B?>B?>Bz·6>B xOut·1B yOut·2doubleJacobian@?>Bx·5>By·6>Bz·7>BBB8?BxBy?Bx1By1Bx2By2B?B??B?B?B?B??B?B?"kB?B??"?B?B?bXBYB PrivateKey<DB PublicX priv·28 ?crypto.go ??X priv·3> ? Reader?"p?&? rand·4"digest·5 ? SignerOpts HashFunc ?Hash (Available`h·2 ?`? `New`?  4hash hash.go??? ? Writer?"??&?B|SSum"?" ResetSize BlockSize(?`?  opts·6:"& ?GenerateKey>c·3\?X& f?\?X priv·5>" hash·6BVB\& err·3 ? Verify< pub·2>" hash·3:B?>Bs·5 <autogenerated>init ? bits bits.goLen?? BDF ? low64DB:Z ?* Len64B?? ?bits_tables.go len8tab? 4??
262 .this?type.io.Reader?p?type.[]uint8?n?type.int?err?type.error?Tgclocals·ed2b4e9472fcfb4edac5bdc674d399da?Tgclocals·69c1753bd5f81501d95132d08af04464?.gofile..<autogenerated>?."".(*PrivateKey).Public?$type.*"".PublicKey?priv?&type.*"".PrivateKey?~r0?*type.crypto.PublicKey?Tgclocals·d4dc2f11db048877dbc0f60a22b4adb3?Tgclocals·33cdeccccebe80329f1fdbee7f5874cb?Rgofile..$GOROOT/src/crypto/ecdsa/ecdsa.go?*"".(*PrivateKey).Sign?"".Sign?,type."".ecdsaSignature?runtime.convT2E?*encoding/asn1.Marshal?rand? digest?opts?,type.crypto.SignerOpts?~r3?~r4?.autotmp_14?Tgclocals·3087e126bd0e9289431c13b25872a122?Tgclocals·f83413e1f0916265015171ba5b95f669?&"".randFieldElement?type.uint8?"runtime.makeslice?io.ReadFull?"type.math/big.Int?"runtime.newobject?0math/big.(*Int).SetBytes? "".one?&math/big.(*Int).Sub?&math/big.(*Int).Mod?&math/big.(*Int).Add?c?4type.crypto/elliptic.Curve?k?$type.*math/big.Int?.autotmp_11?.autotmp_15?type.*uint8?.autotmp_16?.autotmp_17?
268 b.len?Tgclocals·8778901f6f574439e3a5f970df3846d6?Tgclocals·3291c12687433b43e46ffaa7a2698cbb?"".GenerateKey?$type."".PrivateKey?(runtime.writeBarrier?*math/big.(*Int).Bytes?,runtime.gcWriteBarrier?~r2?Tgclocals·09225f39958b236ad45a794a6fcf6215?Tgclocals·f2bd991dfe7f1d463ae834c6abb8d5fd?"".hashToInt?&math/big.(*Int).Rsh?$runtime.panicslice?$runtime.panicindex?hash?ret?orderBits?Tgclocals·adaa5ac2470a7c4eae5dedd95f04bdb1?Tgclocals·a5055cd68876ca89b660e46f7e21fd17?Fgofile..$GOROOT/src/math/big/int.go?Fgofile..$GOROOT/src/math/big/nat.go?,math/big.(*Int).BitLen?6math/big.big.nat.big.bitLen? "".fermatInverse?math/big.NewInt?&math/big.(*Int).Exp?N?.autotmp_8?nMinus2?Tgclocals·218dc5f20fabbe464a49df5d029a6b2f?Tgclocals·e2477039821b86e4e6695f5a18f8aa40?"crypto/sha512.New?(crypto/aes.NewCipher?8go.string."IV for ECDSA CTR"?2runtime.stringtoslicebyte?(crypto/cipher.NewCTR?"".zeroReader?0go.itab.*"".zr,io.Reader?Xgo.itab.crypto/cipher.StreamReader,io.Reader?runtime.convT2I?$type."".invertible?$runtime.assertI2I2?&math/big.(*Int).Mul?"".errZeroParam?r?s?.autotmp_35?>type.crypto/cipher.StreamReader?.autotmp_64?.autotmp_65?type.*"".zr?.autotmp_66?.autotmp_67?.autotmp_68?.autotmp_69?block.data?block.itab?csprng.S.data?csprng.S.itab?e?entropy.ptr?kInv?md.data?md.itab?x·2?entropy.cap?entropy.len?Tgclocals·7469e0a06d9556058a84bcb10daf7c74?Tgclocals·9a24e6c6ec6b7218dde33b4b0dcd624d?(math/big.(*Int).Sign?"".Verify?&math/big.(*Int).Cmp?(type."".combinedMult?4math/big.(*Int).ModInverse?pub?type.bool?.autotmp_54? c.data? c.itab?opt.data?opt.itab?u1?u2?w?x1?y1?.autotmp_63?Tgclocals·cbac70e3390fc20b2224ca8e58b65e55?Tgclocals·b610cdfa7efa39478e3563b8d8f5856f?"".(*zr).Read?8runtime.memclrNoHeapPointers?z?dst?Tgclocals·ee157f251dc329a7054e04d91c73fa55?"".init?"".initdone·?"runtime.throwinit?crypto.init?crypto/aes.init?$crypto/cipher.init?(crypto/elliptic.init?$crypto/sha512.init?$encoding/asn1.init?io.init?math/big.init?0math/big.(*Int).SetInt64?4go.string."zero parameter"?errors.New?.type..hash."".PublicKey?"runtime.interhash?runtime.memhash?h?type.uintptr?Tgclocals·e6397a44f8e1b6e77d0f200b4fba5269?*type..eq."".PublicKey?runtime.ifaceeq?q?Tgclocals·8f9cec06d1ae35cc9900c511c5e4bdab?&"".(*PublicKey).Add?x2?y2?x?y?Tgclocals·ed82810f7643c69dfbb86085c389ff1b?,"".(*PublicKey).Double?Tgclocals·b355e63dd7a0e6e486ea5f5d6ae3d2e6?2"".(*PublicKey).IsOnCurve?Tgclocals·d5b141600d14f1af2e5806a867c74d9b?,"".(*PublicKey).Params?~r1?Tgclocals·524d71b8d4b4126db12e7a6de3370d94?<"".(*PublicKey).ScalarBaseMult?Tgclocals·8999307b7be34fc1fb41dca3d5345ce3?4"".(*PublicKey).ScalarMult?Tgclocals·b65f09f699144ca546675407d9eb5f90? "".PublicKey.Add?"type."".PublicKey?Tgclocals·6fad997f5db8ff2a015c2b1d2438a49c?&"".PublicKey.Double?Tgclocals·7ef76a8695508dd4be46185eacfb014d?,"".PublicKey.IsOnCurve?Tgclocals·93d400178544bc512cee57485667f821?&"".PublicKey.Params?Tgclocals·00a7bcf12fe794553c60a5677df371f1?6"".PublicKey.ScalarBaseMult?Tgclocals·b36e5881c9077b742756be97d1953be4?."".PublicKey.ScalarMult?Tgclocals·e38048b773c567966ece68d8776fbcb1?0type..hash."".PrivateKey?,type..eq."".PrivateKey?("".(*PrivateKey).Add?."".(*PrivateKey).Double?4"".(*PrivateKey).IsOnCurve?."".(*PrivateKey).Params?>"".(*PrivateKey).ScalarBaseMult?6"".(*PrivateKey).ScalarMu (…)
    [all...]
  /prebuilts/go/darwin-x86/pkg/darwin_amd64_race/crypto/
ecdsa.a 144 2BSetStringBr? ? base·5BSetUint64B0?2BSignBB:SqrtB0?B2>B StringBB> SubB0?B2>B4>BTextBB>? ?BB:UnmarshalJSONB0>" text·3&UnmarshalTextB0>"?&XorB0?B2>B4>BlehmerGCDB0?B?>B?>B!modSqrt3Mod4PrimeB0?B2>B?>B'modSqrtTonelliShanksB0?B2>B?B?Bz·4?P? base·6B&setFromScannerBr?Pr·4?BXNBBBGxBGyB BitSizeName .?@curve·3>B x1·4>B y1·5>B x2·6>B y2·7>BB Double@?>B?>B?>BBIsOnCurve@curve·2>B2>B4>@?8@ScalarBaseMult@?>"?:BBScalarMult@?>B Bx·4>B By·5>"?:BBaddJacobian@curve·4> B x1·5>B y1·6>B z1·7>B x2·8>B y2·9>B z2·10>BBB#affineFromJacobian@?>B?>B?>Bz·6>B xOut·1B yOut·2doubleJacobian@?>Bx·5>By·6>Bz·7>BBB8?BxBy?Bx1By1Bx2By2B?B??B?B?B?B??B?B?"kB?B??"?B?B?bXBYB PrivateKey<DB PublicX priv·28 ?crypto.go ??X priv·3> ? Reader?"p?&? rand·4"digest·5 ? SignerOpts HashFunc ?Hash (Available`h·2 ?`? `New`?  4hash hash.go??? ? Writer?"??&?B|SSum"?" ResetSize BlockSize(?`?  opts·6:"& ?GenerateKey>c·3\?X& f?\?X priv·5>" hash·6BVB\& err·3 ? Verify< pub·2>" hash·3:B?>Bs·5 <autogenerated>init ? bits bits.goLen?? BDF ? low64DB:Z ?* Len64B?? ?bits_tables.go len8tab? 4??
262 .this?type.io.Reader?p?type.[]uint8?n?type.int?err?type.error?.autotmp_10?type.*uint8?.autotmp_11?.autotmp_9?Tgclocals·d0753e8a3d875a070f12eec08c2a0129?Tgclocals·f83413e1f0916265015171ba5b95f669?.gofile..<autogenerated>?."".(*PrivateKey).Public?$type.*"".PublicKey?priv?&type.*"".PrivateKey?~r0?*type.crypto.PublicKey?Tgclocals·d4dc2f11db048877dbc0f60a22b4adb3?Tgclocals·33cdeccccebe80329f1fdbee7f5874cb?Rgofile..$GOROOT/src/crypto/ecdsa/ecdsa.go?*"".(*PrivateKey).Sign?"".Sign?,type."".ecdsaSignature?runtime.convT2E?*encoding/asn1.Marshal?rand? digest?opts?,type.crypto.SignerOpts?~r3?~r4?.autotmp_14?.autotmp_20?.autotmp_23?.autotmp_24?err.data?err.itab?.autotmp_21?.autotmp_22?Tgclocals·7fdc3188decf1cbd0af87478ce286d67?Tgclocals·2ec747ac216b60a55aa8b25ccaa77dbf?&"".randFieldElement? runtime.raceread?type.uint8?"runtime.makeslice?io.ReadFull?"type.math/big.Int?"runtime.newobject?0math/big.(*Int).SetBytes? "".one?&math/big.(*Int).Sub?&math/big.(*Int).Mod?&math/big.(*Int).Add?c?4type.crypto/elliptic.Curve?k?$type.*math/big.Int?.autotmp_15?
268 b.len?Tgclocals·e2c1e5dab4ae6445d89b3da2cda46c09?Tgclocals·5880bba0895f45b0bce9bc22d1b65d8b?"".GenerateKey?$type."".PrivateKey?"runtime.racewrite?(runtime.writeBarrier?*math/big.(*Int).Bytes?,runtime.gcWriteBarrier?~r2?.autotmp_16?&type.**math/big.Int?.autotmp_17?.autotmp_18?.autotmp_19?Tgclocals·0c5e59b30814e67fa2796dc0cd287f6d?Tgclocals·a2d0cfc98df5ea1c088fb4c980f6208e?"".hashToInt?&math/big.(*Int).Rsh?$runtime.panicslice?$runtime.panicindex?hash?.autotmp_25?ret?x·2?x·2.ptr?&type.*math/big.Word?i·3?orderBits?x·2.len?Tgclocals·13a948a4a6dba6d97cff51c04ef82d91?Tgclocals·52f415216b9bc12d58ec1952754ea197?Fgofile..$GOROOT/src/math/big/int.go?Fgofile..$GOROOT/src/math/big/nat.go?,math/big.(*Int).BitLen?6math/big.big.nat.big.bitLen? "".fermatInverse?math/big.NewInt?&math/big.(*Int).Exp?N?.autotmp_12?nMinus2?Tgclocals·6d5df2eb5d7dd8186872beed8a8cf01d?Tgclocals·524a0cb463328e7663f0d78036753cec?"crypto/sha512.New?(crypto/aes.NewCipher?8go.string."IV for ECDSA CTR"?2runtime.stringtoslicebyte?(crypto/cipher.NewCTR?"".zeroReader?0go.itab.*"".zr,io.Reader?Xgo.itab.crypto/cipher.StreamReader,io.Reader?runtime.convT2I?$type."".invertible?$runtime.assertI2I2?&math/big.(*Int).Mul?"".errZeroParam?r?s?.autotmp_37?>type.crypto/cipher.StreamReader?.autotmp_71?.autotmp_72?.autotmp_73?type.*"".zr?.autotmp_74?.autotmp_75?.autotmp_76?.autotmp_77?.autotmp_78?.autotmp_81?block.data?block.itab?csprng.S.data?csprng.S.itab?e?entropy.ptr?kInv?md.data?md.itab?.autotmp_79?.autotmp_80?entropy.cap?entropy.len?Tgclocals·32870560ab248b6357795e015802c0bc?Tgclocals·954f043cad0800a47cd41ee3be8c7b87?(math/big.(*Int).Sign?"".Verify?&math/big.(*Int).Cmp?(type."".combinedMult?4math/big.(*Int).ModInverse?pub?type.bool?.autotmp_59?.autotmp_69? c.data? c.itab?opt.data?opt.itab?u1?u2?w?x1?y1?.autotmp_70?Tgclocals·d919fe4da48072ba15ae696974d84510?Tgclocals·b68a1064fb2627d0214134875fdb489a?"".(*zr).Read?z?dst?i?Tgclocals·ee157f251dc329a7054e04d91c73fa55?"".init?"".initdone·?"runtime.throwinit?crypto.init?crypto/aes.init?$crypto/cipher.init?(crypto/elliptic.init?$crypto/sha512.init?$encoding/asn1.init?io.init?math/big.init?0math/big.(*Int).SetInt64?4go.string."zero parameter"?errors.New?.autotmp_4?.autotmp_5?.autotmp_6?Tgclocals·7d2d5fca80364273fb07d5820a76fef4?Tgclocals·4eeac9547cf881384402f46e84b6611a?.type..hash."".PublicKey?"runtime.interhash?runtime.memhash?h?Tgclocals·e6397a44f8e1b6e77d0f200b4fba5269?Tgclocals·69c1753bd5f81501d95132d08af04464?*type..eq."".PublicKey?runtime.ifaceeq?q?.autotmp_7?.autotmp_8?Tgclocals·b5c7440574e69788f4b5c44c58660c31?Tgclocals·cebf9419b90e46477aa4e5920f8669ae?&"".(*PublicKey).Add?x2?y2?x?y?.autotmp_13?Tgclocals·60fdcb9636090d5a3a7d764d75b2c963?,"".(*PublicKey).Double?Tgclocals·e61418e9b6f19a08b234aabca4122070?2"".(*PublicKey).IsOnCurve?Tgclocals·d5b141600d14f1af2e5806a867c74d9b?,"".(*PublicKey).Params?~r1?Tgclocals·69c8abe0d2280b641caedd7f008b2cfa?Tgclocals·9783710103695d7171ee820ce562d18d?<"".(*PublicKey).ScalarBaseMult?Tgclocals·a47a020f8b045ea699d4fa017980015a?4"".(*PublicKey).ScalarMult?Tgclocals·df8a17af494df3f846b2447ed0b136bc? "".PublicKey.Add?"type."".PublicKey?Tgclocals·2f0414e2972a176a93d175d599d76ff8?&"".PublicKey.Double?Tgclocals·3c79fcbeef4481f36276e93a0b2a8d08?,"".PublicKey.IsOnCurve?Tgclocals·93d400178544bc512cee57485667f821?&"".PublicKey.Params?Tgclocals·9befd43ff3a227cbef595c96a8f5a127?6"".PublicKey.ScalarBaseMult?Tgclocals·50013cc06a46c650eeb2b904672a0b40?."".PublicKey.ScalarMult?Tgclocals·ed1d90f3c8a68f792822d3a2d0f9a020?0type..hash."".PrivateKey?,type..eq."".PrivateKey?("".(*PrivateKey).Add?."".(*PrivateKey).Double?4"".(*PrivateKey).IsOnCurve?."".(*PrivateKey).Params?>"".(*PrivateKey).ScalarBaseMult?6"".(*PrivateKey).ScalarMu (…)
    [all...]
  /prebuilts/go/linux-x86/pkg/linux_amd64/crypto/
ecdsa.a 144 2BSetStringBr? ? base·5BSetUint64B0?2BSignBB:SqrtB0?B2>B StringBB> SubB0?B2>B4>BTextBB>? ?BB:UnmarshalJSONB0>" text·3&UnmarshalTextB0>"?&XorB0?B2>B4>BlehmerGCDB0?B?>B?>B!modSqrt3Mod4PrimeB0?B2>B?>B'modSqrtTonelliShanksB0?B2>B?B?Bz·4?P? base·6B&setFromScannerBr?Pr·4?BXNBBBGxBGyB BitSizeName .?@curve·3>B x1·4>B y1·5>B x2·6>B y2·7>BB Double@?>B?>B?>BBIsOnCurve@curve·2>B2>B4>@?8@ScalarBaseMult@?>"?:BBScalarMult@?>B Bx·4>B By·5>"?:BBaddJacobian@curve·4> B x1·5>B y1·6>B z1·7>B x2·8>B y2·9>B z2·10>BBB#affineFromJacobian@?>B?>B?>Bz·6>B xOut·1B yOut·2doubleJacobian@?>Bx·5>By·6>Bz·7>BBB8?BxBy?Bx1By1Bx2By2B?B??B?B?B?B??B?B?"kB?B??"?B?B?bXBYB PrivateKey<DB PublicX priv·28 ?crypto.go ??X priv·3> ? Reader?"p?&? rand·4"digest·5 ? SignerOpts HashFunc ?Hash (Available`h·2 ?`? `New`?  4hash hash.go??? ? Writer?"??&?B|SSum"?" ResetSize BlockSize(?`?  opts·6:"& ?GenerateKey>c·3\?X& f?\?X priv·5>" hash·6BVB\& err·3 ? Verify< pub·2>" hash·3:B?>Bs·5 <autogenerated>init ? bits bits.goLen?? BDF ? low64DB:Z ?* Len64B?? ?bits_tables.go len8tab? 4??
262 .this?type.io.Reader?p?type.[]uint8?n?type.int?err?type.error?Tgclocals·ed2b4e9472fcfb4edac5bdc674d399da?Tgclocals·69c1753bd5f81501d95132d08af04464?.gofile..<autogenerated>?."".(*PrivateKey).Public?$type.*"".PublicKey?priv?&type.*"".PrivateKey?~r0?*type.crypto.PublicKey?Tgclocals·d4dc2f11db048877dbc0f60a22b4adb3?Tgclocals·33cdeccccebe80329f1fdbee7f5874cb?Rgofile..$GOROOT/src/crypto/ecdsa/ecdsa.go?*"".(*PrivateKey).Sign?"".Sign?,type."".ecdsaSignature?runtime.convT2E?*encoding/asn1.Marshal?rand? digest?opts?,type.crypto.SignerOpts?~r3?~r4?.autotmp_14?Tgclocals·3087e126bd0e9289431c13b25872a122?Tgclocals·f83413e1f0916265015171ba5b95f669?&"".randFieldElement?type.uint8?"runtime.makeslice?io.ReadFull?"type.math/big.Int?"runtime.newobject?0math/big.(*Int).SetBytes? "".one?&math/big.(*Int).Sub?&math/big.(*Int).Mod?&math/big.(*Int).Add?c?4type.crypto/elliptic.Curve?k?$type.*math/big.Int?.autotmp_11?.autotmp_15?type.*uint8?.autotmp_16?.autotmp_17?
268 b.len?Tgclocals·8778901f6f574439e3a5f970df3846d6?Tgclocals·3291c12687433b43e46ffaa7a2698cbb?"".GenerateKey?$type."".PrivateKey?(runtime.writeBarrier?*math/big.(*Int).Bytes?,runtime.gcWriteBarrier?~r2?Tgclocals·09225f39958b236ad45a794a6fcf6215?Tgclocals·f2bd991dfe7f1d463ae834c6abb8d5fd?"".hashToInt?&math/big.(*Int).Rsh?$runtime.panicslice?$runtime.panicindex?hash?ret?orderBits?Tgclocals·adaa5ac2470a7c4eae5dedd95f04bdb1?Tgclocals·a5055cd68876ca89b660e46f7e21fd17?Fgofile..$GOROOT/src/math/big/int.go?Fgofile..$GOROOT/src/math/big/nat.go?,math/big.(*Int).BitLen?6math/big.big.nat.big.bitLen? "".fermatInverse?math/big.NewInt?&math/big.(*Int).Exp?N?.autotmp_8?nMinus2?Tgclocals·218dc5f20fabbe464a49df5d029a6b2f?Tgclocals·e2477039821b86e4e6695f5a18f8aa40?"crypto/sha512.New?(crypto/aes.NewCipher?8go.string."IV for ECDSA CTR"?2runtime.stringtoslicebyte?(crypto/cipher.NewCTR?"".zeroReader?0go.itab.*"".zr,io.Reader?Xgo.itab.crypto/cipher.StreamReader,io.Reader?runtime.convT2I?$type."".invertible?$runtime.assertI2I2?&math/big.(*Int).Mul?"".errZeroParam?r?s?.autotmp_35?>type.crypto/cipher.StreamReader?.autotmp_64?.autotmp_65?type.*"".zr?.autotmp_66?.autotmp_67?.autotmp_68?.autotmp_69?block.data?block.itab?csprng.S.data?csprng.S.itab?e?entropy.ptr?kInv?md.data?md.itab?x·2?entropy.cap?entropy.len?Tgclocals·7469e0a06d9556058a84bcb10daf7c74?Tgclocals·9a24e6c6ec6b7218dde33b4b0dcd624d?(math/big.(*Int).Sign?"".Verify?&math/big.(*Int).Cmp?(type."".combinedMult?4math/big.(*Int).ModInverse?pub?type.bool?.autotmp_54? c.data? c.itab?opt.data?opt.itab?u1?u2?w?x1?y1?.autotmp_63?Tgclocals·cbac70e3390fc20b2224ca8e58b65e55?Tgclocals·b610cdfa7efa39478e3563b8d8f5856f?"".(*zr).Read?8runtime.memclrNoHeapPointers?z?dst?Tgclocals·ee157f251dc329a7054e04d91c73fa55?"".init?"".initdone·?"runtime.throwinit?crypto.init?crypto/aes.init?$crypto/cipher.init?(crypto/elliptic.init?$crypto/sha512.init?$encoding/asn1.init?io.init?math/big.init?0math/big.(*Int).SetInt64?4go.string."zero parameter"?errors.New?.type..hash."".PublicKey?"runtime.interhash?runtime.memhash?h?type.uintptr?Tgclocals·e6397a44f8e1b6e77d0f200b4fba5269?*type..eq."".PublicKey?runtime.ifaceeq?q?Tgclocals·8f9cec06d1ae35cc9900c511c5e4bdab?&"".(*PublicKey).Add?x2?y2?x?y?Tgclocals·ed82810f7643c69dfbb86085c389ff1b?,"".(*PublicKey).Double?Tgclocals·b355e63dd7a0e6e486ea5f5d6ae3d2e6?2"".(*PublicKey).IsOnCurve?Tgclocals·d5b141600d14f1af2e5806a867c74d9b?,"".(*PublicKey).Params?~r1?Tgclocals·524d71b8d4b4126db12e7a6de3370d94?<"".(*PublicKey).ScalarBaseMult?Tgclocals·8999307b7be34fc1fb41dca3d5345ce3?4"".(*PublicKey).ScalarMult?Tgclocals·b65f09f699144ca546675407d9eb5f90? "".PublicKey.Add?"type."".PublicKey?Tgclocals·6fad997f5db8ff2a015c2b1d2438a49c?&"".PublicKey.Double?Tgclocals·7ef76a8695508dd4be46185eacfb014d?,"".PublicKey.IsOnCurve?Tgclocals·93d400178544bc512cee57485667f821?&"".PublicKey.Params?Tgclocals·00a7bcf12fe794553c60a5677df371f1?6"".PublicKey.ScalarBaseMult?Tgclocals·b36e5881c9077b742756be97d1953be4?."".PublicKey.ScalarMult?Tgclocals·e38048b773c567966ece68d8776fbcb1?0type..hash."".PrivateKey?,type..eq."".PrivateKey?("".(*PrivateKey).Add?."".(*PrivateKey).Double?4"".(*PrivateKey).IsOnCurve?."".(*PrivateKey).Params?>"".(*PrivateKey).ScalarBaseMult?6"".(*PrivateKey).ScalarMu (…)
    [all...]
  /prebuilts/go/linux-x86/pkg/linux_amd64_race/crypto/
ecdsa.a 144 2BSetStringBr? ? base·5BSetUint64B0?2BSignBB:SqrtB0?B2>B StringBB> SubB0?B2>B4>BTextBB>? ?BB:UnmarshalJSONB0>" text·3&UnmarshalTextB0>"?&XorB0?B2>B4>BlehmerGCDB0?B?>B?>B!modSqrt3Mod4PrimeB0?B2>B?>B'modSqrtTonelliShanksB0?B2>B?B?Bz·4?P? base·6B&setFromScannerBr?Pr·4?BXNBBBGxBGyB BitSizeName .?@curve·3>B x1·4>B y1·5>B x2·6>B y2·7>BB Double@?>B?>B?>BBIsOnCurve@curve·2>B2>B4>@?8@ScalarBaseMult@?>"?:BBScalarMult@?>B Bx·4>B By·5>"?:BBaddJacobian@curve·4> B x1·5>B y1·6>B z1·7>B x2·8>B y2·9>B z2·10>BBB#affineFromJacobian@?>B?>B?>Bz·6>B xOut·1B yOut·2doubleJacobian@?>Bx·5>By·6>Bz·7>BBB8?BxBy?Bx1By1Bx2By2B?B??B?B?B?B??B?B?"kB?B??"?B?B?bXBYB PrivateKey<DB PublicX priv·28 ?crypto.go ??X priv·3> ? Reader?"p?&? rand·4"digest·5 ? SignerOpts HashFunc ?Hash (Available`h·2 ?`? `New`?  4hash hash.go??? ? Writer?"??&?B|SSum"?" ResetSize BlockSize(?`?  opts·6:"& ?GenerateKey>c·3\?X& f?\?X priv·5>" hash·6BVB\& err·3 ? Verify< pub·2>" hash·3:B?>Bs·5 <autogenerated>init ? bits bits.goLen?? BDF ? low64DB:Z ?* Len64B?? ?bits_tables.go len8tab? 4??
262 .this?type.io.Reader?p?type.[]uint8?n?type.int?err?type.error?.autotmp_10?type.*uint8?.autotmp_11?.autotmp_9?Tgclocals·d0753e8a3d875a070f12eec08c2a0129?Tgclocals·f83413e1f0916265015171ba5b95f669?.gofile..<autogenerated>?."".(*PrivateKey).Public?$type.*"".PublicKey?priv?&type.*"".PrivateKey?~r0?*type.crypto.PublicKey?Tgclocals·d4dc2f11db048877dbc0f60a22b4adb3?Tgclocals·33cdeccccebe80329f1fdbee7f5874cb?Rgofile..$GOROOT/src/crypto/ecdsa/ecdsa.go?*"".(*PrivateKey).Sign?"".Sign?,type."".ecdsaSignature?runtime.convT2E?*encoding/asn1.Marshal?rand? digest?opts?,type.crypto.SignerOpts?~r3?~r4?.autotmp_14?.autotmp_20?.autotmp_23?.autotmp_24?err.data?err.itab?.autotmp_21?.autotmp_22?Tgclocals·7fdc3188decf1cbd0af87478ce286d67?Tgclocals·2ec747ac216b60a55aa8b25ccaa77dbf?&"".randFieldElement? runtime.raceread?type.uint8?"runtime.makeslice?io.ReadFull?"type.math/big.Int?"runtime.newobject?0math/big.(*Int).SetBytes? "".one?&math/big.(*Int).Sub?&math/big.(*Int).Mod?&math/big.(*Int).Add?c?4type.crypto/elliptic.Curve?k?$type.*math/big.Int?.autotmp_15?
268 b.len?Tgclocals·e2c1e5dab4ae6445d89b3da2cda46c09?Tgclocals·5880bba0895f45b0bce9bc22d1b65d8b?"".GenerateKey?$type."".PrivateKey?"runtime.racewrite?(runtime.writeBarrier?*math/big.(*Int).Bytes?,runtime.gcWriteBarrier?~r2?.autotmp_16?&type.**math/big.Int?.autotmp_17?.autotmp_18?.autotmp_19?Tgclocals·0c5e59b30814e67fa2796dc0cd287f6d?Tgclocals·a2d0cfc98df5ea1c088fb4c980f6208e?"".hashToInt?&math/big.(*Int).Rsh?$runtime.panicslice?$runtime.panicindex?hash?.autotmp_25?ret?x·2?x·2.ptr?&type.*math/big.Word?i·3?orderBits?x·2.len?Tgclocals·13a948a4a6dba6d97cff51c04ef82d91?Tgclocals·52f415216b9bc12d58ec1952754ea197?Fgofile..$GOROOT/src/math/big/int.go?Fgofile..$GOROOT/src/math/big/nat.go?,math/big.(*Int).BitLen?6math/big.big.nat.big.bitLen? "".fermatInverse?math/big.NewInt?&math/big.(*Int).Exp?N?.autotmp_12?nMinus2?Tgclocals·6d5df2eb5d7dd8186872beed8a8cf01d?Tgclocals·524a0cb463328e7663f0d78036753cec?"crypto/sha512.New?(crypto/aes.NewCipher?8go.string."IV for ECDSA CTR"?2runtime.stringtoslicebyte?(crypto/cipher.NewCTR?"".zeroReader?0go.itab.*"".zr,io.Reader?Xgo.itab.crypto/cipher.StreamReader,io.Reader?runtime.convT2I?$type."".invertible?$runtime.assertI2I2?&math/big.(*Int).Mul?"".errZeroParam?r?s?.autotmp_37?>type.crypto/cipher.StreamReader?.autotmp_71?.autotmp_72?.autotmp_73?type.*"".zr?.autotmp_74?.autotmp_75?.autotmp_76?.autotmp_77?.autotmp_78?.autotmp_81?block.data?block.itab?csprng.S.data?csprng.S.itab?e?entropy.ptr?kInv?md.data?md.itab?.autotmp_79?.autotmp_80?entropy.cap?entropy.len?Tgclocals·32870560ab248b6357795e015802c0bc?Tgclocals·954f043cad0800a47cd41ee3be8c7b87?(math/big.(*Int).Sign?"".Verify?&math/big.(*Int).Cmp?(type."".combinedMult?4math/big.(*Int).ModInverse?pub?type.bool?.autotmp_59?.autotmp_69? c.data? c.itab?opt.data?opt.itab?u1?u2?w?x1?y1?.autotmp_70?Tgclocals·d919fe4da48072ba15ae696974d84510?Tgclocals·b68a1064fb2627d0214134875fdb489a?"".(*zr).Read?z?dst?i?Tgclocals·ee157f251dc329a7054e04d91c73fa55?"".init?"".initdone·?"runtime.throwinit?crypto.init?crypto/aes.init?$crypto/cipher.init?(crypto/elliptic.init?$crypto/sha512.init?$encoding/asn1.init?io.init?math/big.init?0math/big.(*Int).SetInt64?4go.string."zero parameter"?errors.New?.autotmp_4?.autotmp_5?.autotmp_6?Tgclocals·7d2d5fca80364273fb07d5820a76fef4?Tgclocals·4eeac9547cf881384402f46e84b6611a?.type..hash."".PublicKey?"runtime.interhash?runtime.memhash?h?Tgclocals·e6397a44f8e1b6e77d0f200b4fba5269?Tgclocals·69c1753bd5f81501d95132d08af04464?*type..eq."".PublicKey?runtime.ifaceeq?q?.autotmp_7?.autotmp_8?Tgclocals·b5c7440574e69788f4b5c44c58660c31?Tgclocals·cebf9419b90e46477aa4e5920f8669ae?&"".(*PublicKey).Add?x2?y2?x?y?.autotmp_13?Tgclocals·60fdcb9636090d5a3a7d764d75b2c963?,"".(*PublicKey).Double?Tgclocals·e61418e9b6f19a08b234aabca4122070?2"".(*PublicKey).IsOnCurve?Tgclocals·d5b141600d14f1af2e5806a867c74d9b?,"".(*PublicKey).Params?~r1?Tgclocals·69c8abe0d2280b641caedd7f008b2cfa?Tgclocals·9783710103695d7171ee820ce562d18d?<"".(*PublicKey).ScalarBaseMult?Tgclocals·a47a020f8b045ea699d4fa017980015a?4"".(*PublicKey).ScalarMult?Tgclocals·df8a17af494df3f846b2447ed0b136bc? "".PublicKey.Add?"type."".PublicKey?Tgclocals·2f0414e2972a176a93d175d599d76ff8?&"".PublicKey.Double?Tgclocals·3c79fcbeef4481f36276e93a0b2a8d08?,"".PublicKey.IsOnCurve?Tgclocals·93d400178544bc512cee57485667f821?&"".PublicKey.Params?Tgclocals·9befd43ff3a227cbef595c96a8f5a127?6"".PublicKey.ScalarBaseMult?Tgclocals·50013cc06a46c650eeb2b904672a0b40?."".PublicKey.ScalarMult?Tgclocals·ed1d90f3c8a68f792822d3a2d0f9a020?0type..hash."".PrivateKey?,type..eq."".PrivateKey?("".(*PrivateKey).Add?."".(*PrivateKey).Double?4"".(*PrivateKey).IsOnCurve?."".(*PrivateKey).Params?>"".(*PrivateKey).ScalarBaseMult?6"".(*PrivateKey).ScalarMu (…)
    [all...]
  /external/boringssl/src/crypto/x509/
make_many_constraints.go 61 var privateKey *rsa.PrivateKey
73 privateKey = key.(*rsa.PrivateKey)
122 caBytes, err := x509.CreateCertificate(rand.Reader, &caTemplate, &caTemplate, &privateKey.PublicKey, privateKey)
171 leafBytes, err := x509.CreateCertificate(rand.Reader, &leafTemplate, ca, &privateKey.PublicKey, privateKey)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
DHUtil.java 4 import java.security.PrivateKey;
42 PrivateKey key)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
DHUtil.java 4 import java.security.PrivateKey;
37 PrivateKey key)
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreECPrivateKey.java 19 import java.security.PrivateKey;
24 * EC private key (instance of {@link PrivateKey} and {@link ECKey}) backed by keystore.
AndroidKeyStoreRSAPrivateKey.java 20 import java.security.PrivateKey;
24 * RSA private key (instance of {@link PrivateKey} and {@link RSAKey}) backed by keystore.

Completed in 7052 milliseconds

12 3 4 5 6 7 8 91011>>