OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SecureHash
(Results
1 - 7
of
7
) sorted by null
/external/chromium/crypto/
secure_hash.h
15
class
SecureHash
{
20
virtual ~
SecureHash
() {}
22
static
SecureHash
* Create(Algorithm type);
28
SecureHash
() {}
31
DISALLOW_COPY_AND_ASSIGN(
SecureHash
);
secure_hash_default.cc
15
class SecureHashSHA256NSS : public
SecureHash
{
39
SecureHash
*
SecureHash
::Create(Algorithm algorithm) {
secure_hash_openssl.cc
17
class SecureHashSHA256OpenSSL : public
SecureHash
{
43
SecureHash
*
SecureHash
::Create(Algorithm algorithm) {
sha2.cc
14
scoped_ptr<
SecureHash
> ctx(
SecureHash
::Create(
SecureHash
::SHA256));
secure_hash_unittest.cc
26
scoped_ptr<crypto::
SecureHash
> ctx(crypto::
SecureHash
::Create(
27
crypto::
SecureHash
::SHA256));
/external/chromium/chrome/browser/download/
base_file.h
18
class
SecureHash
;
97
scoped_ptr<crypto::
SecureHash
> secure_hash_;
base_file.cc
55
secure_hash_.reset(crypto::
SecureHash
::Create(crypto::
SecureHash
::SHA256));
Completed in 302 milliseconds