/system/tpm/trunks/ |
tpm_utility_impl.h | 65 std::string* ciphertext) override; 69 const std::string& ciphertext,
|
tpm_utility.h | 107 // to give us the |ciphertext|. |scheme| refers to the encryption scheme 115 std::string* ciphertext) = 0; 118 // referenced by its handle |key_handle|. The |ciphertext| is then decrypted 125 const std::string& ciphertext,
|
/system/vold/ |
KeyStorage.cpp | 141 const std::string& message, std::string* ciphertext) { 160 *ciphertext = nonce + body + mac; 166 const std::string& ciphertext, std::string* message) { 167 auto nonce = ciphertext.substr(0, GCM_NONCE_BYTES); 168 auto bodyAndMac = ciphertext.substr(GCM_NONCE_BYTES);
|
/external/ImageMagick/ImageMagick/api/ |
cipher.html | 91 <p>EncipherAESBlock() enciphers a single block of plaintext to produce a block of ciphertext.</p> 97 unsigned char *ciphertext) 115 <dt>ciphertext</dt>
|
/external/ImageMagick/www/api/ |
cipher.html | 95 <p>EncipherAESBlock() enciphers a single block of plaintext to produce a block of ciphertext.</p> 101 unsigned char *ciphertext) 119 <dt>ciphertext</dt>
|
cipher.php | 91 <p>EncipherAESBlock() enciphers a single block of plaintext to produce a block of ciphertext.</p> 97 unsigned char *ciphertext) 115 <dt>ciphertext</dt>
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
DESedeWrapEngine.java | 221 throw new InvalidCipherTextException("Null pointer as ciphertext"); 227 throw new InvalidCipherTextException("Ciphertext not multiple of " + blockSize); 296 "Checksum inside ciphertext is corrupted");
|
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/ |
CipherTest.java | 277 + ".ciphertext"; 344 byte[] cipherText = loadBytes("hyts_" + "des-ede3-cbc.test" + index 345 + ".ciphertext"); 347 encryptedPlaintext, cipherText));
|
/external/srtp/crypto/cipher/ |
aes_icm.c | 241 debug_print(mod_aes_icm, "ciphertext: %s", 297 debug_print(mod_aes_icm, "ciphertext: %s", 491 32, /* octets in ciphertext */ 492 aes_icm_test_case_0_ciphertext, /* ciphertext */
|
null_cipher.c | 131 NULL, /* ciphertext */
|
/prebuilts/go/darwin-x86/src/crypto/cipher/ |
gcm_test.go | 184 t.Errorf("#%d: Open was successful after altering ciphertext", i)
|
/prebuilts/go/linux-x86/src/crypto/cipher/ |
gcm_test.go | 184 t.Errorf("#%d: Open was successful after altering ciphertext", i)
|
/system/security/keystore/ |
blob.h | 30 * the description. The secret is stored in ciphertext, and its original size
|
/external/ImageMagick/MagickCore/ |
cipher.c | 272 % of ciphertext. 277 % unsigned char *ciphertext) 285 % o ciphertext: the cipher text. 289 static inline void AddRoundKey(const unsigned int *ciphertext, 299 plaintext[i]=key[i] ^ ciphertext[i]; 327 static void FinalizeRoundKey(const unsigned int *ciphertext, 346 value=ciphertext[i] ^ key[i]; 356 static void InitializeRoundKey(const unsigned char *ciphertext, 369 p=ciphertext; 389 unsigned char *ciphertext) [all...] |
/libcore/luni/src/test/java/libcore/javax/crypto/ |
CipherTest.java | 2941 public final byte[] ciphertext; field in class:CipherTest.CipherTestParam [all...] |
/external/srtp/srtp/ |
ekt.c | 150 aes_decrypt_with_raw_key(void *ciphertext, const void *key) { 154 aes_decrypt(ciphertext, expanded_key);
|
/external/boringssl/src/include/openssl/ |
cipher.h | 95 * ciphertext. */ 173 /* EVP_EncryptFinal_ex writes at most a block of ciphertext to |out| and sets 190 /* EVP_DecryptFinal_ex writes at most a block of ciphertext to |out| and sets 195 * ciphertext if padding is enabled. */ 202 * ciphertext block. For stream ciphers, the stream is advanced past the bytes
|
/external/boringssl/src/crypto/rsa/ |
rsa_test.cc | 539 uint8_t ciphertext[256]; local [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/kms/ |
layer1.py | 260 Decrypts ciphertext. Ciphertext is plaintext that has been 264 :param ciphertext_blob: Ciphertext including metadata. 381 Encrypts plaintext into ciphertext by using a customer master 709 a ciphertext. 712 :param ciphertext_blob: Ciphertext of the data to re-encrypt. [all...] |
/frameworks/base/keystore/java/android/security/keystore/ |
KeyProtection.java | 369 * weaknesses due to which ciphertext may leak information about plaintext. For example, if a 370 * given plaintext always produces the same ciphertext, an attacker may see the repeated 608 * of weaknesses due to which ciphertext may leak information about plaintext. For example, 609 * if a given plaintext always produces the same ciphertext, an attacker may see the 631 * be provided in addition to the ciphertext to the entities which need to decrypt the 632 * ciphertext.</li> [all...] |
/external/srtp/test/ |
srtp_driver.c | 652 * if the policy includes confidentiality, check that ciphertext is 661 printf("testing that ciphertext is distinct from plaintext..."); 851 * if the policy includes confidentiality, check that ciphertext is 860 printf("testing that ciphertext is distinct from plaintext..."); 1196 * protect plaintext, then compare with ciphertext [all...] |
/hardware/ti/omap4-aah/security/tf_sdk/include/ |
OEMCrypto.h | 185 * the API handles the residual bytes using CipherText Stealing (CTS). 216 * the API handles the residual bytes using CipherText Stealing (CTS).
|
/system/keymaster/ |
key_blob_test.cpp | 103 // key_data shouldn't be anywhere in the blob, ciphertext should. 175 // Find the ciphertext, them modify it.
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/ |
AEADBlockCipher.java | 19 * appropriately until the end of data is reached and the entire ciphertext is authenticated.
|
CBCBlockCipher.java | 199 * copy ciphertext to cbcV
|