HomeSort by relevance Sort by last modified time
    Searched refs:Sign (Results 51 - 75 of 117) sorted by null

1 23 4 5

  /external/chromium_org/content/child/webcrypto/openssl/
rsa_ssa_openssl.cc 56 virtual Status Sign(const blink::WebCryptoAlgorithm& algorithm,
hmac_openssl.cc 177 virtual Status Sign(const blink::WebCryptoAlgorithm& algorithm,
194 Status status = Sign(algorithm, key, data, &result);
  /external/chromium_org/crypto/
ec_signature_creator_nss.cc 69 bool ECSignatureCreatorImpl::Sign(const uint8* data,
84 // Sign the secret data and save it to |result|.
signature_creator_nss.cc 71 bool SignatureCreator::Sign(RSAPrivateKey* key,
hmac_win.cc 169 bool HMAC::Sign(const base::StringPiece& data,
  /external/chromium_org/net/quic/crypto/
channel_id_test.cc 234 ASSERT_TRUE(channel_id_key->Sign(signed_data, &signature));
channel_id_chromium.cc 25 bool ChannelIDKeyChromium::Sign(base::StringPiece signed_data,
39 if (!sig_creator->Sign(&data[0], data.size(), &der_signature)) {
  /external/chromium_org/remoting/protocol/
authentication_method.cc 68 if (!response.Sign(shared_secret, out_bytes, sizeof(out_bytes))) {
69 LOG(FATAL) << "HMAC::Sign failed";
  /external/chromium_org/v8/src/
conversions-inl.h 92 return d.Sign() * static_cast<int32_t>(d.Significand() >> -exponent);
95 return d.Sign() * static_cast<int32_t>(d.Significand() << exponent);
246 // Ignore leading sign; skip following spaces.
455 enum Sign {
461 Sign sign = NONE;
464 // Ignore leading sign.
467 sign = POSITIVE;
471 sign = NEGATIVE;
486 return (sign == NEGATIVE) ? -V8_INFINITY : V8_INFINITY
    [all...]
  /external/chromium_org/chrome/browser/chromeos/platform_keys/
platform_keys_service.cc 45 // Callback used by |PlatformKeysService::Sign|.
62 platform_keys::subtle::Sign(token_id,
100 void PlatformKeysService::Sign(const std::string& token_id,
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/
index.php 180 <a href="javascript:" onclick="openPopup(450, 500, this);">Sign in</a>
183 <a href="?logout">Sign out</a>
  /external/chromium_org/components/rappor/
byte_vector_utils.cc 36 if (!hmac.Sign(data, &key[0], key.size()))
46 return hmac.Sign(ByteVectorAsStringPiece(*value),
  /external/chromium_org/content/child/webcrypto/nss/
hmac_nss.cc 174 virtual Status Sign(const blink::WebCryptoAlgorithm& algorithm,
218 Status status = Sign(algorithm, key, data, &result);
  /external/chromium_org/base/strings/
string_number_conversions.cc 203 // Sign provides:
207 // according to the sign of the number being parsed.
208 template<typename Sign>
234 if (!Sign::CheckBounds(output, new_digit)) {
240 Sign::Increment(new_digit, output);
  /external/chromium_org/content/child/webcrypto/
algorithm_implementation.cc 32 Status AlgorithmImplementation::Sign(const blink::WebCryptoAlgorithm& algorithm,
algorithm_dispatch.cc 188 Status Sign(const blink::WebCryptoAlgorithm& algorithm,
202 return impl->Sign(algorithm, key, data, buffer);
  /external/chromium_org/net/quic/test_tools/
crypto_test_utils_openssl.cc 33 virtual bool Sign(StringPiece signed_data,
  /external/chromium_org/chrome/browser/ui/webui/options/
startup_page_list_browsertest.js 61 tooltip: 'Facebook :: Sign In',
  /external/chromium_org/v8/test/mjsunit/
dehoisted-array-index.js 90 // sign extend is useless
155 // Sign extension of key makes AssertZeroExtended fail in DoBoundsCheck
  /external/llvm/lib/Support/
Dwarf.cpp 509 /// DecimalSignString - Return the string for the specified decimal sign
511 const char *llvm::dwarf::DecimalSignString(unsigned Sign) {
512 switch (Sign) {
    [all...]
  /external/deqp/framework/referencerenderer/
rrRenderer.cpp 213 template <int Sign, int CompNdx>
216 DE_STATIC_ASSERT(Sign == +1 || Sign == -1);
224 template <int Sign, int CompNdx>
225 bool ComponentPlane<Sign, CompNdx>::pointInClipVolume (const ClipVec4& p) const
229 return (ClipFloat)(Sign * p[CompNdx]) <= clipVolumeSize * p.w();
232 template <int Sign, int CompNdx>
233 ClipFloat ComponentPlane<Sign, CompNdx>::clipLineSegmentEnd (const ClipVec4& v0, const ClipVec4& v1) const
239 (ClipFloat)Sign * clipVolumeSize);
242 template <int Sign, int CompNdx
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/music_manager_private/
device_id.cc 25 hmac.Sign(text, &digest[0], digest.size());
  /external/chromium_org/chrome/tools/
webforms_aggregator_unittests.py 47 <a href="%s">sign in</a>
85 <h1>Sign in!</h1>
90 <input type="submit" value="Sign in">
  /external/chromium_org/chrome/renderer/resources/extensions/enterprise_platform_keys/
subtle_crypto.js 93 if (intersect(keyUsages, [KeyUsage.sign, KeyUsage.verify]).length !=
131 SubtleCryptoImpl.prototype.sign = function(algorithm, key, dataView) {
134 if (key.type != 'private' || key.usages.indexOf(KeyUsage.sign) == -1)
138 normalizeAlgorithm(algorithm, 'Sign');
149 internalAPI.sign(subtleCrypto.tokenId,
185 {functions:['generateKey', 'sign', 'exportKey']});
  /external/chromium_org/content/child/webcrypto/test/
hmac_unittest.cc 73 Sign(algorithm, key, CryptoData(test_message), &output));
186 key_ops->AppendString("sign");
222 key_ops->AppendString("sign");
378 // (sign|verify). Moreover "encrypt" is not a valid usage for HMAC.
387 // Fail: Input usage_mask (encrypt|sign|verify) is not a subset of the JWK
388 // value (sign|verify). Moreover "encrypt" is not a valid usage for HMAC.
417 // Import a symmetric key JWK and HMAC-SHA256 sign()
443 Sign(CreateAlgorithm(blink::WebCryptoAlgorithmIdHmac),

Completed in 677 milliseconds

1 23 4 5