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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
NormalizeAlgorithm.h 45 Encrypt,
  /external/chromium_org/crypto/
openpgp_symmetric_encryption.h 38 static std::string Encrypt(base::StringPiece plaintext,
encryptor.h 67 bool Encrypt(const base::StringPiece& plaintext, std::string* ciphertext);
117 bool Crypt(bool do_encrypt, // Pass true to encrypt, false to decrypt.
  /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);
  /external/chromium_org/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 47 EXPECT_FALSE(cryptographer_.Encrypt(original, &encrypted));
73 EXPECT_TRUE(cryptographer_.Encrypt(original, &encrypted));
92 EXPECT_TRUE(cryptographer_.Encrypt(original, &encrypted));
97 EXPECT_TRUE(cryptographer_.Encrypt(original, &encrypted2));
99 // Now encrypt with a new default key. Should overwrite the old data.
102 EXPECT_TRUE(cryptographer_.Encrypt(original, &encrypted3));
123 EXPECT_TRUE(cryptographer_.Encrypt(original, &encrypted1));
125 EXPECT_TRUE(cryptographer_.Encrypt(original, &encrypted2));
132 EXPECT_TRUE(cryptographer_.Encrypt(original, &encrypted3));
134 EXPECT_TRUE(cryptographer_.Encrypt(original, &encrypted4))
    [all...]
nigori.h 24 // for your secret (basically a map key), and |Encrypt| and |Decrypt| to store
56 bool Encrypt(const std::string& value, std::string* encrypted) const;
cryptographer.h 36 // This class manages the Nigori objects used to encrypt and decrypt sensitive
81 bool Encrypt(const ::google::protobuf::MessageLite& message,
108 // Encrypt.
160 // Returns whether this Cryptographer is ready to encrypt and decrypt data.
  /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.h 42 virtual bool Encrypt(base::StringPiece nonce,
null_encrypter.h 15 // has occurred. It does not actually encrypt the payload, but does
25 virtual bool Encrypt(base::StringPiece nonce,
null_encrypter_test.cc 16 TEST_F(NullEncrypterTest, Encrypt) {
quic_encrypter.h 43 // Encrypt encrypts |plaintext| and writes the ciphertext, plus a MAC over
48 virtual bool Encrypt(base::StringPiece nonce,
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_test.cc 209 // EncryptWithNonce wraps the |Encrypt| method of |encrypter| to allow passing
218 if (!encrypter->Encrypt(nonce, associated_data, plaintext,
226 TEST(Aes128Gcm12EncrypterTest, Encrypt) {
  /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) {
  /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_org/components/webdata/encryptor/
encryptor_posix.cc 93 if (!encryptor.Encrypt(plaintext, ciphertext))

Completed in 594 milliseconds

1 2 3