HomeSort by relevance Sort by last modified time
    Searched refs:Algorithm (Results 1 - 25 of 98) sorted by null

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
HmacParams.idl 33 ] interface HmacParams : Algorithm {
34 readonly attribute Algorithm hash;
RsaSsaParams.idl 33 ] interface RsaSsaParams : Algorithm {
34 readonly attribute Algorithm hash;
AesCbcParams.idl 33 ] interface AesCbcParams : Algorithm {
AesKeyGenParams.idl 33 ] interface AesKeyGenParams : Algorithm {
Algorithm.idl 34 ] interface Algorithm {
Algorithm.h 42 class Algorithm : public ScriptWrappable, public RefCounted<Algorithm> {
44 static PassRefPtr<Algorithm> create(const WebKit::WebCryptoAlgorithm&);
51 explicit Algorithm(const WebKit::WebCryptoAlgorithm&);
Algorithm.cpp 32 #include "modules/crypto/Algorithm.h"
43 PassRefPtr<Algorithm> Algorithm::create(const WebKit::WebCryptoAlgorithm& algorithm)
45 switch (algorithm.paramsType()) {
47 return adoptRef(new Algorithm(algorithm));
49 return AesCbcParams::create(algorithm);
51 return AesKeyGenParams::create(algorithm);
53 return HmacParams::create(algorithm);
    [all...]
HmacParams.cpp 38 Algorithm* HmacParams::hash()
41 m_hash = Algorithm::create(m_algorithm.hmacParams()->hash());
45 HmacParams::HmacParams(const WebKit::WebCryptoAlgorithm& algorithm)
46 : Algorithm(algorithm)
48 ASSERT(algorithm.hmacParams());
HmacParams.h 34 #include "modules/crypto/Algorithm.h"
39 class HmacParams : public Algorithm {
41 static PassRefPtr<HmacParams> create(const WebKit::WebCryptoAlgorithm& algorithm) { return adoptRef(new HmacParams(algorithm)); }
43 Algorithm* hash();
48 RefPtr<Algorithm> m_hash;
RsaSsaParams.cpp 38 Algorithm* RsaSsaParams::hash()
41 m_hash = Algorithm::create(m_algorithm.rsaSsaParams()->hash());
45 RsaSsaParams::RsaSsaParams(const WebKit::WebCryptoAlgorithm& algorithm)
46 : Algorithm(algorithm)
48 ASSERT(algorithm.rsaSsaParams());
RsaSsaParams.h 34 #include "modules/crypto/Algorithm.h"
39 class RsaSsaParams : public Algorithm {
41 static PassRefPtr<RsaSsaParams> create(const WebKit::WebCryptoAlgorithm& algorithm) { return adoptRef(new RsaSsaParams(algorithm)); }
43 Algorithm* hash();
48 RefPtr<Algorithm> m_hash;
RsaKeyGenParams.idl 33 ] interface RsaKeyGenParams : Algorithm {
Key.h 43 class Algorithm;
53 Algorithm* algorithm();
68 RefPtr<Algorithm> m_algorithm;
AesKeyGenParams.cpp 43 AesKeyGenParams::AesKeyGenParams(const WebKit::WebCryptoAlgorithm& algorithm)
44 : Algorithm(algorithm)
46 ASSERT(algorithm.aesKeyGenParams());
AesKeyGenParams.h 34 #include "modules/crypto/Algorithm.h"
39 class AesKeyGenParams : public Algorithm {
41 static PassRefPtr<AesKeyGenParams> create(const WebKit::WebCryptoAlgorithm& algorithm) { return adoptRef(new AesKeyGenParams(algorithm)); }
CryptoOperation.idl 34 readonly attribute Algorithm algorithm;
Key.idl 36 readonly attribute Algorithm algorithm;
AesCbcParams.cpp 47 AesCbcParams::AesCbcParams(const WebKit::WebCryptoAlgorithm& algorithm)
48 : Algorithm(algorithm)
50 ASSERT(algorithm.aesCbcParams());
AesCbcParams.h 34 #include "modules/crypto/Algorithm.h"
39 class AesCbcParams : public Algorithm {
41 static PassRefPtr<AesCbcParams> create(const WebKit::WebCryptoAlgorithm& algorithm) { return adoptRef(new AesCbcParams(algorithm)); }
RsaKeyGenParams.h 34 #include "modules/crypto/Algorithm.h"
40 class RsaKeyGenParams : public Algorithm {
42 static PassRefPtr<RsaKeyGenParams> create(const WebKit::WebCryptoAlgorithm& algorithm) { return adoptRef(new RsaKeyGenParams(algorithm)); }
  /external/chromium/crypto/
secure_hash.h 17 enum Algorithm {
22 static SecureHash* Create(Algorithm type);
symmetric_key.h 27 // Defines the algorithm that a key will be used with. See also
29 enum Algorithm {
36 // Generates a random key suitable to be used with |algorithm| and of
39 static SymmetricKey* GenerateRandomKey(Algorithm algorithm,
43 // for use with specified |algorithm|. Note |algorithm| is not the algorithm
46 static SymmetricKey* DeriveKeyFromPassword(Algorithm algorithm,
    [all...]
  /external/chromium_org/crypto/
secure_hash.h 20 enum Algorithm {
25 static SecureHash* Create(Algorithm type);
symmetric_key.h 27 // Defines the algorithm that a key will be used with. See also
29 enum Algorithm {
36 // Generates a random key suitable to be used with |algorithm| and of
39 static SymmetricKey* GenerateRandomKey(Algorithm algorithm,
43 // for use with specified |algorithm|. Note |algorithm| is not the algorithm
47 static SymmetricKey* DeriveKeyFromPassword(Algorithm algorithm,
    [all...]
  /frameworks/av/media/libeffects/loudness/dsp/core/
interpolator_base-inl.h 30 template <typename T, class Algorithm>
31 InterpolatorBase<T, Algorithm>::InterpolatorBase() {
44 template <typename T, class Algorithm>
45 InterpolatorBase<T, Algorithm>::~InterpolatorBase() {
52 template <typename T, class Algorithm>
53 bool InterpolatorBase<T, Algorithm>::Initialize(const vector<T> &x_data,
64 template <typename T, class Algorithm>
65 bool InterpolatorBase<T, Algorithm>::Initialize(double x_start_offset,
74 template <typename T, class Algorithm>
75 bool InterpolatorBase<T, Algorithm>::Initialize(double x_start_offset
    [all...]

Completed in 315 milliseconds

1 2 3 4