HomeSort by relevance Sort by last modified time
    Searched refs:m_algorithm (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
Algorithm.h 48 WebKit::WebCryptoAlgorithmParamsType type() const { return m_algorithm.paramsType(); }
53 const WebKit::WebCryptoAlgorithm m_algorithm; member in class:WebCore::Algorithm
AesKeyGenParams.cpp 40 return m_algorithm.aesKeyGenParams()->length();
RsaKeyGenParams.cpp 40 return m_algorithm.rsaKeyGenParams()->modulusLength();
46 const WebKit::WebVector<unsigned char>& exponent = m_algorithm.rsaKeyGenParams()->publicExponent();
Algorithm.cpp 64 : m_algorithm(algorithm)
71 return m_algorithm.name();
AesCbcParams.cpp 41 const WebKit::WebVector<unsigned char>& iv = m_algorithm.aesCbcParams()->iv();
HmacParams.cpp 41 m_hash = Algorithm::create(m_algorithm.hmacParams()->hash());
RsaSsaParams.cpp 41 m_hash = Algorithm::create(m_algorithm.rsaSsaParams()->hash());
Key.h 68 RefPtr<Algorithm> m_algorithm; member in class:WebCore::Key
Key.cpp 114 if (!m_algorithm)
115 m_algorithm = Algorithm::create(m_key.algorithm());
116 return m_algorithm.get();
CryptoOperation.h 140 WebKit::WebCryptoAlgorithm m_algorithm; member in class:WebCore::CryptoOperation
CryptoOperation.cpp 213 : m_algorithm(algorithm)
245 m_algorithmNode = Algorithm::create(m_algorithm);
  /external/smack/asmack-master/static-src/novell-openldap-jldap/com/novell/sasl/client/
DigestChallenge.java 46 private String m_algorithm; field in class:DigestChallenge
59 m_algorithm = null;
125 else if ( null == m_algorithm )
249 if (null != m_algorithm)
252 m_algorithm = pd.getValue();
254 if (!"md5-sess".equals(m_algorithm))
256 m_algorithm);
382 return m_algorithm;
  /external/smack/src/com/novell/sasl/client/
DigestChallenge.java 46 private String m_algorithm; field in class:DigestChallenge
59 m_algorithm = null;
125 else if ( null == m_algorithm )
249 if (null != m_algorithm)
252 m_algorithm = pd.getValue();
254 if (!"md5-sess".equals(m_algorithm))
256 m_algorithm);
382 return m_algorithm;
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
MockWebCrypto.cpp 55 : m_algorithm(algorithm)
79 if (m_algorithm.id() == WebKit::WebCryptoAlgorithmIdSha1 && m_operation == Digest) {
92 } else if (m_algorithm.id() == WebKit::WebCryptoAlgorithmIdHmac && m_operation == Sign) {
95 } else if (m_algorithm.id() == WebKit::WebCryptoAlgorithmIdHmac && m_operation == Verify) {
117 WebKit::WebCryptoAlgorithm m_algorithm; member in class:WebTestRunner::__anon12803::MockCryptoOperation

Completed in 549 milliseconds