Searched refs:signature (Results 276 - 300 of 649) sorted by relevance

<<11121314151617181920>>

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
H A DMethodImplementationBuilder.java125 @Nullable StringReference signature) {
126 currentLocation.addStartLocal(registerNumber, name, type, signature);
124 addStartLocal(int registerNumber, @Nullable StringReference name, @Nullable TypeReference type, @Nullable StringReference signature) argument
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dx_all.c73 a->signature,a->cert_info,r));
79 a->sig_alg,a->signature,a->req_info,r));
85 return(ASN1_item_sign(ASN1_ITEM_rptr(X509_CINF), x->cert_info->signature,
86 x->sig_alg, x->signature, x->cert_info,pkey,md));
93 x->cert_info->signature,
94 x->sig_alg, x->signature, x->cert_info, ctx);
108 x->signature, x->req_info,pkey,md));
114 x->sig_alg, NULL, x->signature, x->req_info, ctx);
121 x->sig_alg, x->signature, x->crl,pkey,md));
128 x->crl->sig_alg, x->sig_alg, x->signature,
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/DebuggerOnDemand/
H A DLaunchedDebugger.java47 // signature of the tested debuggee class
185 protected long getClassIDBySignature(String signature) { argument
186 logWriter.println("=> Getting reference type ID for class: " + signature);
190 packet.setNextValueAsString(signature);
206 classID + "> for signature " + signature, classID > 0);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DTBSCertList.java23 * signature AlgorithmIdentifier,
140 AlgorithmIdentifier signature; field in class:TBSCertList
188 signature = AlgorithmIdentifier.getInstance(seq.getObjectAt(seqPos++));
229 return signature;
287 v.add(signature);
/external/chromium_org/base/
H A Dcpu.h34 int signature() const { return signature_; } function in class:base::CPU
/external/chromium_org/chrome/browser/metrics/variations/
H A Dvariations_seed_store.cc149 VLOG(1) << "Variations seed signature in local pref missing or invalid "
186 VLOG(1) << "Variations seed signature missing or invalid with result: "
256 std::string signature;
257 if (!base::Base64Decode(base64_seed_signature, &signature))
263 reinterpret_cast<const uint8*>(signature.data()), signature.size(),
/external/chromium_org/chrome/browser/policy/test/
H A Dlocal_policy_test_server.cc34 // Private signing key signature file within the temporary directory.
91 const crypto::RSAPrivateKey* key, const std::string& signature) {
107 // Write the signature data.
112 signature.c_str(),
113 signature.size());
115 return bytes_written == static_cast<int>(signature.size());
90 SetSigningKeyAndSignature( const crypto::RSAPrivateKey* key, const std::string& signature) argument
H A Dlocal_policy_test_server.h41 // Sets the policy signing key and verification signature used by the server.
45 const std::string& signature);
/external/chromium_org/chrome/browser/renderer_host/pepper/
H A Dpepper_platform_verification_message_filter.h50 const std::string& signature,
/external/chromium_org/chrome/browser/safe_browsing/incident_reporting/
H A Denvironment_data_collection.cc79 machine->set_cpuid(cpu_info.signature());
/external/chromium_org/chrome/browser/ui/views/
H A Dsigned_certificate_timestamp_info_view.cc134 HashAlgorithmToResourceID(sct.signature.hash_algorithm)));
136 SignatureAlgorithmToResourceID(sct.signature.signature_algorithm)));
147 sct.signature.signature_data.c_str()),
148 sct.signature.signature_data.length())));
/external/chromium_org/chromeos/cryptohome/
H A Dhomedir_methods.h78 // |signature| is used by cryptohome to verify the authentity of new key.
83 const std::string& signature,
H A Dmock_homedir_methods.h52 const std::string& signature,
/external/chromium_org/chromeos/login/auth/
H A Dfake_extended_authenticator.h42 const std::string& signature,
/external/chromium_org/components/component_updater/
H A Dcomponent_unpacker.cc37 // This class makes sure that the CRX digital signature is valid
59 std::vector<uint8_t> signature(header.signature_size);
61 fread(&signature[0], sizeof(uint8_t), header.signature_size, crx_file);
69 &signature[0],
70 base::checked_cast<int>(signature.size()),
158 // First, validate the CRX header and signature. As of today
173 // File is valid and the digital signature matches. Now make sure
/external/chromium_org/content/child/webcrypto/nss/
H A Dhmac_nss.cc214 const CryptoData& signature,
224 *signature_match = result.size() == signature.byte_length() &&
226 signature.bytes(),
227 signature.byte_length());
/external/chromium_org/content/child/webcrypto/openssl/
H A Dhmac_openssl.cc190 const CryptoData& signature,
200 *signature_match = result.size() == signature.byte_length() &&
202 signature.bytes(),
203 signature.byte_length());
/external/chromium_org/net/android/
H A Dkeystore.h75 // Compute the signature of a given message, which is actually a hash,
81 // |signature| will receive the signature on success.
87 std::vector<uint8>* signature);
/external/chromium_org/net/cert/
H A Dsigned_certificate_timestamp.h70 // match this DigitallySigned hash and signature algorithms.
77 // 'signature' field.
116 DigitallySigned signature; member in struct:net::ct::SignedCertificateTimestamp
/external/chromium_org/net/quic/crypto/
H A Dproof_verifier_chromium.h66 const std::string& signature,
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
H A Dnacl_subprocess.h76 const std::string& signature,
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/host/
H A DInspectorFrontendHost.js660 * @param {!Array.<string>} signature
663 _dispatch: function(name, signature, runOnceLoaded)
685 if (signature.length < 2) {
690 for (var i = 0; i < signature.length; ++i)
691 data[signature[i]] = params[i];
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
H A DSubtleCrypto.h57 ScriptPromise verifySignature(ScriptState*, const Dictionary&, CryptoKey*, const ArrayPiece& signature, const ArrayPiece& data);
/external/chromium_org/third_party/webrtc/examples/android/media_demo/jni/
H A Djni_helpers.h53 const char* signature);
/external/libpng/
H A Dpnginfo.h82 png_byte signature[8]; /* magic bytes read by libpng from start of file */ member in struct:png_info_def

Completed in 2091 milliseconds

<<11121314151617181920>>