OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Encrypt
(Results
1 - 15
of
15
) sorted by null
/external/chromium/crypto/
encryptor_nss.cc
52
bool Encryptor::
Encrypt
(const std::string& plaintext, std::string* ciphertext) {
encryptor_mac.cc
68
bool Encryptor::
Encrypt
(const std::string& plaintext, std::string* ciphertext) {
encryptor_win.cc
80
bool Encryptor::
Encrypt
(const std::string& plaintext, std::string* ciphertext) {
encryptor_openssl.cc
72
bool Encryptor::
Encrypt
(const std::string& plaintext, std::string* ciphertext) {
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
NormalizeAlgorithm.h
45
Encrypt
,
/external/chromium_org/crypto/
encryptor_nss.cc
74
bool Encryptor::
Encrypt
(const base::StringPiece& plaintext,
encryptor_openssl.cc
74
bool Encryptor::
Encrypt
(const base::StringPiece& plaintext,
openpgp_symmetric_encryption.cc
620
static ByteString
Encrypt
(base::StringPiece plaintext,
785
std::string OpenPGPSymmetricEncrytion::
Encrypt
(
791
Encrypter::
Encrypt
(plaintext, passphrase);
/external/chromium_org/net/quic/crypto/
null_encrypter.cc
24
bool NullEncrypter::
Encrypt
(
43
Encrypt
(StringPiece(), associated_data, plaintext, buffer);
aes_128_gcm_12_encrypter_openssl.cc
75
bool Aes128Gcm12Encrypter::
Encrypt
(StringPiece nonce,
138
// TODO(ianswett): Introduce a check to ensure that we don't
encrypt
with the
144
if (!
Encrypt
(StringPiece(reinterpret_cast<char*>(nonce), sizeof(nonce)),
aes_128_gcm_12_encrypter_nss.cc
278
bool Aes128Gcm12Encrypter::
Encrypt
(StringPiece nonce,
345
// TODO(ianswett): Introduce a check to ensure that we don't
encrypt
with the
351
if (!
Encrypt
(StringPiece(reinterpret_cast<char*>(nonce), sizeof(nonce)),
/external/chromium/chrome/browser/sync/util/
nigori.cc
139
if (!encryptor.
Encrypt
(plaintext.str(), &ciphertext))
170
bool Nigori::
Encrypt
(const std::string& value, std::string* encrypted) const {
180
if (!encryptor.
Encrypt
(value, &ciphertext))
cryptographer.cc
44
bool Cryptographer::
Encrypt
(const ::google::protobuf::MessageLite& message,
56
if (!default_nigori_->second->
Encrypt
(serialized,
58
NOTREACHED(); //
Encrypt
should not fail.
76
return std::string(""); // Caller should have called CanDecrypt(
encrypt
).
103
//
Encrypt
the bag with the default Nigori.
104
return
Encrypt
(bag, encrypted);
/external/chromium_org/sync/util/
nigori.cc
134
if (!encryptor.
Encrypt
(plaintext.str(), &ciphertext))
158
bool Nigori::
Encrypt
(const std::string& value, std::string* encrypted) const {
170
if (!encryptor.
Encrypt
(value, &ciphertext))
cryptographer.cc
56
bool Cryptographer::
Encrypt
(
61
LOG(ERROR) << "Cryptographer not ready, failed to
encrypt
.";
93
if (!default_nigori->second->
Encrypt
(serialized,
95
LOG(ERROR) << "Failed to
encrypt
data.";
113
return std::string(); // Caller should have called CanDecrypt(
encrypt
).
140
//
Encrypt
the bag with the default Nigori.
141
return
Encrypt
(bag, encrypted);
Completed in 228 milliseconds