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

  /external/chromium/chrome/browser/sync/util/
nigori_unittest.cc 58 EXPECT_TRUE(nigori.Encrypt(plaintext, &encrypted1));
61 EXPECT_TRUE(nigori.Encrypt(plaintext, &encrypted2));
88 EXPECT_TRUE(nigori.Encrypt(plaintext, &encrypted));
103 EXPECT_TRUE(nigori.Encrypt(plaintext, &encrypted));
121 EXPECT_TRUE(nigori.Encrypt(plaintext, &encrypted));
155 EXPECT_TRUE(nigori1.Encrypt(original, &ciphertext));
159 EXPECT_TRUE(nigori2.Encrypt(original, &ciphertext));
cryptographer_unittest.cc 55 EXPECT_TRUE(cryptographer.Encrypt(original, &encrypted));
76 EXPECT_TRUE(cryptographer.Encrypt(original, &encrypted1));
78 EXPECT_TRUE(cryptographer.Encrypt(original, &encrypted2));
85 EXPECT_TRUE(cryptographer.Encrypt(original, &encrypted3));
87 EXPECT_TRUE(cryptographer.Encrypt(original, &encrypted4));
116 EXPECT_TRUE(cryptographer.Encrypt(original, &encrypted));
cryptographer.h 29 // This class manages the Nigori objects used to encrypt and decrypt sensitive
70 bool Encrypt(const ::google::protobuf::MessageLite& message,
88 // Encrypt.
106 // Returns whether this Cryptographer is ready to encrypt and decrypt data.
129 // Functions to serialize + encrypt a Nigori object in an opaque format for
nigori.h 21 // for your secret (basically a map key), and |Encrypt| and |Decrypt| to store
53 bool Encrypt(const std::string& value, std::string* encrypted) const;
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);
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))
  /external/chromium/crypto/
encryptor.h 36 bool Encrypt(const std::string& plaintext, std::string* ciphertext);
48 bool Crypt(bool encrypt, // Pass true to encrypt, false to decrypt.
encryptor_mac.cc 68 bool Encryptor::Encrypt(const std::string& plaintext, std::string* ciphertext) {
encryptor_unittest.cc 28 EXPECT_TRUE(encryptor.Encrypt(plaintext, &ciphertext));
44 // NIST SP 800-38A test vector F.2.5 CBC-AES256.Encrypt.
46 // From NIST SP 800-38a test cast F.2.5 CBC-AES256.Encrypt.
103 EXPECT_TRUE(encryptor.Encrypt(plaintext, &ciphertext));
133 EXPECT_TRUE(encryptor.Encrypt(plaintext, &ciphertext));
159 EXPECT_TRUE(encryptor.Encrypt(plaintext, &ciphertext));
212 EXPECT_TRUE(encryptor.Encrypt(plaintext, &ciphertext));
encryptor_nss.cc 52 bool Encryptor::Encrypt(const std::string& plaintext, std::string* ciphertext) {
encryptor_openssl.cc 72 bool Encryptor::Encrypt(const std::string& plaintext, std::string* ciphertext) {
encryptor_win.cc 80 bool Encryptor::Encrypt(const std::string& plaintext, std::string* ciphertext) {
  /external/grub/util/
grub-md5-crypt 3 # Encrypt a password in MD5 format
35 Encrypt a password in MD5 format.
grub-md5-crypt.in 3 # Encrypt a password in MD5 format
35 Encrypt a password in MD5 format.
  /external/chromium/chrome/browser/password_manager/
encryptor_linux.cc 93 if (!encryptor.Encrypt(plaintext, ciphertext))
  /external/chromium/chrome/browser/sync/engine/
apply_updates_command_unittest.cc 236 cryptographer->Encrypt(data,
286 cryptographer->Encrypt(data,
301 cryptographer.Encrypt(data,
497 // We encrypt with new keys, triggering the local cryptographer to be unready
syncapi.cc 449 LOG(WARNING) << "Attempted to encrypt an already encrypted entity"
458 if (!GetTransaction()->GetCryptographer()->Encrypt(
461 LOG(ERROR) << "Could not encrypt data for node of type " <<
578 if (!cryptographer->Encrypt(data, new_value.mutable_encrypted())) {
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
nigori_util.cc 94 if (!cryptographer->Encrypt(
97 LOG(ERROR) << "Could not encrypt data for newly encrypted type " <<
  /external/chromium/net/socket/
dns_cert_provenance_checker.cc 315 encryptor.Encrypt(plaintext, &ciphertext);
  /external/dropbear/libtomcrypt/
crypt.tex 147 and store data in a format independent of the platform. This means if you encrypt with Blowfish on a PPC it should decrypt
183 the key setup, ECB decrypt and encrypt and test vector routines. After that all five chaining mode routines
404 should never use the ECB modes directly to encrypt data. Instead you should use the ECB functions to make a chaining mode,
432 To encrypt or decrypt a block in ECB mode there are these two functions per cipher:
433 \index{Cipher Encrypt} \index{Cipher Decrypt}
443 These two functions will encrypt or decrypt (respectively) a single block of text\footnote{The size of which depends on
445 the same buffer. For the encrypt function \textit{pt}\footnote{pt stands for plaintext.} is the input and
521 /* encrypt the block */
522 blowfish_ecb_encrypt(pt, /* encrypt this 8-byte array */
644 and tables. The decryption and self--test function pointers of both \textit{encrypt only} descriptors are set to \textbf{NULL} and
    [all...]

Completed in 298 milliseconds