HomeSort by relevance Sort by last modified time
    Searched full:publickey (Results 176 - 200 of 398) sorted by null

1 2 3 4 5 6 78 91011>>

  /system/core/libmincrypt/tools/
DumpPublicKey.java 27 import java.security.PublicKey;
87 static int check(PublicKey key, boolean useSHA256) throws Exception {
221 static String print(PublicKey key, boolean useSHA256) throws Exception {
259 PublicKey key = cert.getPublicKey();
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
X509CRLTest.java 29 import java.security.PublicKey;
86 public void verify(PublicKey key)
92 public void verify(PublicKey key, String sigProvider)
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/
SystemScopeTest.java 96 * verify getIdentity(PublicKey) returns requested identity or null if not found
100 java.security.PublicKey kkk = new PublicKeyStub("kkk", "fff", null);
115 java.security.PublicKey kkk = new PublicKeyStub("kkk", "fff", null);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
KeyFactorySpi.java 7 import java.security.PublicKey;
140 protected PublicKey engineGeneratePublic(
171 public PublicKey generatePublic(SubjectPublicKeyInfo keyInfo)
KeyAgreementSpi.java 9 import java.security.PublicKey;
140 if (!(key instanceof PublicKey))
146 pubKey = ECUtil.generatePublicKeyParameter((PublicKey)key);
  /external/chromium_org/content/child/webcrypto/
shared_crypto.h 74 // * Converting the Blink key to a more specific platform::{PublicKey,
165 class PublicKey;
172 platform::PublicKey** out);
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
CryptoResultImpl.cpp 154 void CryptoResultImpl::completeWithKeyPair(const blink::WebCryptoKey& publicKey, const blink::WebCryptoKey& privateKey)
163 v8::Handle<v8::Value> publicKeyValue = toV8NoInline(Key::create(publicKey), scriptState->context()->Global(), scriptState->isolate());
166 keyPair->Set(v8::String::NewFromUtf8(scriptState->isolate(), "publicKey"), publicKeyValue);
  /libcore/luni/src/test/java/tests/security/cert/
X509CRL2Test.java 25 import java.security.PublicKey;
186 public void verify(PublicKey key) {
190 public void verify(PublicKey key, String sigProvider) {
X509CRLTest.java 37 import java.security.PublicKey;
110 public void verify(PublicKey key)
117 public void verify(PublicKey key, String sigProvider)
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLX509Certificate.java 27 import java.security.PublicKey;
357 private void verifyInternal(PublicKey key, String sigProvider) throws CertificateException,
380 public void verify(PublicKey key) throws CertificateException, NoSuchAlgorithmException,
392 public void verify(PublicKey key, String sigProvider) throws CertificateException,
411 public PublicKey getPublicKey() {
  /frameworks/base/core/java/android/hardware/camera2/
CaptureRequest.java 20 import android.hardware.camera2.impl.PublicKey;
539 @PublicKey
564 @PublicKey
587 @PublicKey
619 @PublicKey
673 @PublicKey
706 @PublicKey
    [all...]
CaptureResult.java 21 import android.hardware.camera2.impl.PublicKey;
390 @PublicKey
415 @PublicKey
438 @PublicKey
470 @PublicKey
524 @PublicKey
557 @PublicKey
600 @PublicKey
650 @PublicKey
    [all...]
  /prebuilts/tools/common/mkidentity/
mkidentity-prebuilt.jar 
  /external/chromium_org/net/android/java/src/org/chromium/net/
X509Util.java 27 import java.security.PublicKey;
153 * sufficient to efficiently query whether a given X500Principal, PublicKey pair is a trust
163 private static Set<Pair<X500Principal, PublicKey>> sSystemTrustAnchorCache;
214 sSystemTrustAnchorCache = new HashSet<Pair<X500Principal, PublicKey>>();
343 Pair<X500Principal, PublicKey> key =
344 new Pair<X500Principal, PublicKey>(root.getSubjectX500Principal(), root.getPublicKey());
AndroidNetworkLibrary.java 38 * @param publicKey The public key bytes as DER-encoded SubjectPublicKeyInfo (X.509)
47 public static boolean storeKeyPair(Context context, byte[] publicKey, byte[] privateKey) {
55 intent.putExtra("KEY", publicKey);
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
AttributeCertificateHolder.java 81 * <li>0 - publicKey - A hash of the public key of the holder must be
110 * <li>0 - publicKey - A hash of the public key of the holder must be
300 case ObjectDigestInfo.publicKey:
  /external/chromium_org/chrome/browser/chromeos/settings/
device_settings_service.h 34 class PublicKey;
138 scoped_refptr<PublicKey> GetPublicKey();
247 scoped_refptr<PublicKey> public_key_;
  /external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/
PoloChallengeResponse.java 23 import java.security.PublicKey;
84 PublicKey clientPubKey = mClientCertificate.getPublicKey();
85 PublicKey serverPubKey = mServerCertificate.getPublicKey();
  /libcore/luni/src/main/java/java/security/cert/
X509CRL.java 26 import java.security.PublicKey;
119 public abstract void verify(PublicKey key)
144 public abstract void verify(PublicKey key, String sigProvider)
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
KeyStoreTest.java 31 import java.security.PublicKey;
349 public void verify(PublicKey p)
357 public void verify(PublicKey p0, String p1)
369 public PublicKey getPublicKey() {
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 37 import java.security.PublicKey;
270 * The class represents empty PublicKey.
273 public static final class TestPublicKey implements PublicKey {
344 public void verify(PublicKey key) throws CertificateException,
350 public void verify(PublicKey key, String sigProvider)
376 public PublicKey getPublicKey() {
550 public PublicKey getPublicKey() {
558 public void verify(PublicKey key, String sigProvider)
565 public void verify(PublicKey key) throws CertificateException,
  /external/chromium_org/chrome/common/extensions/docs/templates/intros/
enterprise_platformKeys.html 60 return userToken.subtleCrypto.exportKey("spki", keyPair.publicKey);
  /external/chromium_org/remoting/ios/bridge/
host_proxy.mm 40 publicKey:(NSString*)hostPublicKey
  /external/chromium_org/remoting/ios/
host_refresh_test_helper.h 22 constexpr static NSString* PublicKeyTag = @"\"publicKey\":\"";
  /external/chromium_org/third_party/WebKit/Source/platform/
CryptoResult.h 49 virtual void completeWithKeyPair(const blink::WebCryptoKey& publicKey, const blink::WebCryptoKey& privateKey) = 0;

Completed in 602 milliseconds

1 2 3 4 5 6 78 91011>>