Searched refs:signature (Results 176 - 200 of 649) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DAutoDocTransforms.py124 def _embed_signature(self, signature, node_doc):
126 return "%s\n%s" % (signature, node_doc)
128 return signature
168 signature = self._fmt_signature(
173 if signature:
185 new_doc = self._embed_signature(signature, old_doc)
197 signature = self._fmt_signature(
201 if signature:
208 new_doc = self._embed_signature(signature, old_doc)
226 signature
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
H A DCertificationRequest.java17 * signature BIT STRING
50 DERBitString signature)
54 this.sigBits = signature;
47 CertificationRequest( CertificationRequestInfo requestInfo, AlgorithmIdentifier algorithm, DERBitString signature) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DX509V1CertificateGenerator.java156 * Set the signature algorithm. This can be either a name or an OID, names
172 throw new IllegalArgumentException("Unknown signature type requested");
296 byte[] signature;
300 signature = X509Util.calculateSignature(sigOID, signatureAlgorithm, key, random, tbsCert);
307 return generateJcaObject(tbsCert, signature);
335 byte[] signature;
339 signature = X509Util.calculateSignature(sigOID, signatureAlgorithm, provider, key, random, tbsCert);
346 return generateJcaObject(tbsCert, signature);
349 private X509Certificate generateJcaObject(TBSCertificate tbsCert, byte[] signature) argument
356 v.add(new DERBitString(signature));
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dextension_creator.h83 // Signs the temporary zip and returns the signature.
86 std::vector<uint8>* signature);
91 const std::vector<uint8>& signature,
H A Dextension_creator.cc212 std::vector<uint8>* signature) {
230 if (!signature_creator->Final(signature)) {
240 const std::vector<uint8>& signature,
255 crx_file::CrxFile::Create(public_key.size(), signature.size(), &error));
268 if (fwrite(&signature.front(), sizeof(uint8), signature.size(),
269 crx_handle.get()) != signature.size()) {
270 PLOG(ERROR) << "fwrite failed to write signature.front";
320 std::vector<uint8> signature; local
323 SignZip(zip_path, key_pair.get(), &signature)
210 SignZip(const base::FilePath& zip_path, crypto::RSAPrivateKey* private_key, std::vector<uint8>* signature) argument
238 WriteCRX(const base::FilePath& zip_path, crypto::RSAPrivateKey* private_key, const std::vector<uint8>& signature, const base::FilePath& crx_path) argument
[all...]
/external/chromium_org/components/nacl/browser/
H A Dnacl_validation_cache.h27 // Is the validation signature in the database?
28 bool QueryKnownToValidate(const std::string& signature, bool reorder);
30 // Put the validation signature in the database.
31 void SetKnownToValidate(const std::string& signature);
/external/chromium_org/net/android/java/src/org/chromium/net/
H A DDefaultAndroidKeyStore.java97 Signature signature = null;
105 signature = Signature.getInstance("NONEwithRSA");
107 signature = Signature.getInstance("NONEwithDSA");
109 signature = Signature.getInstance("NONEwithECDSA");
115 if (signature == null) {
122 signature.initSign(javaKey);
123 signature.update(message);
124 return signature.sign();
/external/chromium_org/net/cert/
H A Dct_log_verifier.h49 // Verifies that |sct| contains a valid signature for |entry|.
53 // Verifies and sets |signed_tree_head|. If |signed_tree_head|'s signature is
68 // that |signature| contains the raw signature data (eg: without any
71 const base::StringPiece& signature);
73 // Returns true if the signature and hash algorithms in |signature|
75 bool SignatureParametersMatch(const ct::DigitallySigned& signature);
/external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/custom/
H A DV8SubtleCryptoCustom.cpp20 // Promise verify(Dictionary algorithm, CryptoKey key, ArrayBuffer signature, ArrayBuffer data);
30 TONATIVE_VOID(ArrayBuffer*, signature, info[2]->IsArrayBuffer() ? V8ArrayBuffer::toImpl(v8::Handle<v8::ArrayBuffer>::Cast(info[2])) : 0);
32 v8SetReturnValue(info, impl->verifySignature(ScriptState::current(info.GetIsolate()), algorithm, key, signature, data).v8Value());
35 // Promise verify(Dictionary algorithm, CryptoKey key, ArrayBuffer signature, ArrayBufferView data);
45 TONATIVE_VOID(ArrayBuffer*, signature, info[2]->IsArrayBuffer() ? V8ArrayBuffer::toImpl(v8::Handle<v8::ArrayBuffer>::Cast(info[2])) : 0);
47 v8SetReturnValue(info, impl->verifySignature(ScriptState::current(info.GetIsolate()), algorithm, key, signature, data).v8Value());
50 // Promise verify(Dictionary algorithm, CryptoKey key, ArrayBufferView signature, ArrayBuffer data);
60 TONATIVE_VOID(ArrayBufferView*, signature, info[2]->IsArrayBufferView() ? V8ArrayBufferView::toImpl(v8::Handle<v8::ArrayBufferView>::Cast(info[2])) : 0);
62 v8SetReturnValue(info, impl->verifySignature(ScriptState::current(info.GetIsolate()), algorithm, key, signature, data).v8Value());
65 // Promise verify(Dictionary algorithm, CryptoKey key, ArrayBufferView signature, ArrayBufferVie
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/tests/lower_jumps/
H A Dlower_breaks_6.opt_test14 (signature void (parameters)
H A Dlower_pulled_out_jump.opt_test16 (signature void (parameters)
/external/dhcpcd/
H A Ddhcpcd-run-hooks7 signature="${signature_base} ${from} ${interface}"
/external/mesa3d/src/glsl/tests/lower_jumps/
H A Dlower_breaks_6.opt_test14 (signature void (parameters)
H A Dlower_pulled_out_jump.opt_test16 (signature void (parameters)
/external/openssl/crypto/asn1/
H A Dt_spki.c97 n=spki->signature->length;
98 s=(char *)spki->signature->data;
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DSignatureTest.java23 Signature signature = new Signature(bytes);
25 assertArrayEquals(bytes, signature.toByteArray());
/external/chromium_org/chromeos/tools/onc_validator/
H A Donc_validator.cc138 const chromeos::onc::OncValueSignature* signature = NULL; local
140 signature = &chromeos::onc::kToplevelConfigurationSignature;
142 signature = &chromeos::onc::kNetworkConfigurationSignature;
144 signature = &chromeos::onc::kCertificateSignature;
151 validator.ValidateAndRepairObject(signature, *onc_object, &result);
/external/chromium_org/net/quic/test_tools/
H A Dcrypto_test_utils_openssl.cc65 // The signature consists of a pair of 32-byte numbers.
67 scoped_ptr<uint8[]> signature(new uint8[kSignatureLength]);
68 memset(signature.get(), 0, kSignatureLength);
69 BN_bn2bin(sig.get()->r, signature.get() + 32 - BN_num_bytes(sig.get()->r));
70 BN_bn2bin(sig.get()->s, signature.get() + 64 - BN_num_bytes(sig.get()->s));
72 *out_signature = string(reinterpret_cast<char*>(signature.get()),
/external/javassist/src/main/javassist/bytecode/
H A DFieldInfo.java103 AttributeInfo signature
105 if (signature != null) {
106 signature = signature.copy(cp, null);
107 newAttributes.add(signature);
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_download_manager.cc202 std::string signature = GetCombinedSignature(forms_in_query); local
205 if (it->first == signature) {
214 data.first = signature;
224 std::string signature = GetCombinedSignature(forms_in_query); local
227 if (it->first == signature) {
241 std::string signature; local
243 signature.reserve(total_size);
247 signature.append(",");
248 signature.append(forms_in_query[i]);
250 return signature;
[all...]
/external/chromium_org/chromeos/network/onc/
H A Donc_validator.cc79 scoped_ptr<base::Value> Validator::MapValue(const OncValueSignature& signature, argument
82 if (onc_value.GetType() != signature.onc_type) {
85 << "', but type '" << ValueTypeToString(signature.onc_type)
92 Mapper::MapValue(signature, onc_value, error);
94 CHECK_EQ(repaired->GetType(), signature.onc_type);
99 const OncValueSignature& signature,
104 bool valid = ValidateObjectDefault(signature, onc_object, repaired.get());
106 if (&signature == &kToplevelConfigurationSignature) {
108 } else if (&signature == &kNetworkConfigurationSignature) {
110 } else if (&signature
98 MapObject( const OncValueSignature& signature, const base::DictionaryValue& onc_object, bool* error) argument
193 MapEntry(int index, const OncValueSignature& signature, const base::Value& onc_value, bool* error) argument
206 ValidateObjectDefault(const OncValueSignature& signature, const base::DictionaryValue& onc_object, base::DictionaryValue* result) argument
[all...]
H A Donc_validator_unittest.cc24 // Validate |onc_object| with the given |signature|. The object is considered
31 const OncValueSignature* signature,
44 repaired_object_ = validator->ValidateAndRepairObject(signature,
82 signature(onc_signature),
88 const OncValueSignature* signature; member in struct:chromeos::onc::__anon6220::OncParams
94 return os << "(" << onc.location << ", " << onc.signature << ", "
117 Validate(true, test_utils::ReadTestDictionary(onc.location), onc.signature,
124 Validate(false, test_utils::ReadTestDictionary(onc.location), onc.signature,
131 // OncValueSignature: signature of that ONC,
246 Validate(true, GetDictionaryFromTestFile(onc.location), onc.signature,
29 Validate(bool strict, scoped_ptr<base::DictionaryValue> onc_object, const OncValueSignature* signature, bool managed_onc, ::onc::ONCSource onc_source) argument
[all...]
/external/oauth/core/src/main/java/net/oauth/signature/
H A DRSA_SHA1.java17 package net.oauth.signature;
193 byte[] signature = sign(baseString.getBytes(OAuth.ENCODING));
194 return base64Encode(signature);
203 protected boolean isValid(String signature, String baseString) argument
206 return verify(decodeBase64(signature),
227 private boolean verify(byte[] signature, byte[] message) argument
237 return verifier.verify(signature);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DTBSCertificate.java18 * signature AlgorithmIdentifier,
39 AlgorithmIdentifier signature; field in class:TBSCertificate
92 signature = AlgorithmIdentifier.getInstance(seq.getObjectAt(seqStart + 2));
145 return signature;
H A DTBSCertificateStructure.java19 * signature AlgorithmIdentifier,
41 AlgorithmIdentifier signature; field in class:TBSCertificateStructure
94 signature = AlgorithmIdentifier.getInstance(seq.getObjectAt(seqStart + 2));
147 return signature;

Completed in 575 milliseconds

1234567891011>>