HomeSort by relevance Sort by last modified time
    Searched full:encrypt (Results 26 - 50 of 1012) sorted by null

12 3 4 5 6 7 8 91011>>

  /system/vold/
EncryptInplace.cpp 163 SLOGE("Error reading real_blkdev %s for inplace encrypt",
171 SLOGE("Error writing crypto_blkdev %s for inplace encrypt",
294 SLOGE("Error opening real_blkdev %s for inplace encrypt. err=%d(%s)\n",
303 SLOGE("Error opening crypto_blkdev %s for ext4 inplace encrypt. err=%d(%s), retrying\n",
307 SLOGE("Error opening crypto_blkdev %s for ext4 inplace encrypt. err=%d(%s)\n",
397 SLOGE("Error reading real_blkdev %s for f2fs inplace encrypt", priv_dat->crypto_blkdev);
402 SLOGE("Error writing crypto_blkdev %s for f2fs inplace encrypt", priv_dat->crypto_blkdev);
431 SLOGE("Error opening real_blkdev %s for f2fs inplace encrypt\n",
436 SLOGE("Error opening crypto_blkdev %s for f2fs inplace encrypt. err=%d(%s)\n",
479 SLOGE("Failed to encrypt f2fs filesystem on %s", real_blkdev)
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothServerSocket.java 80 * @param encrypt require the connection to be encrypted
85 /*package*/ BluetoothServerSocket(int type, boolean auth, boolean encrypt, int port)
88 mSocket = new BluetoothSocket(type, -1, auth, encrypt, null, port, null);
98 * @param encrypt require the connection to be encrypted
105 /*package*/ BluetoothServerSocket(int type, boolean auth, boolean encrypt, int port,
109 mSocket = new BluetoothSocket(type, -1, auth, encrypt, null, port, null, mitm,
120 * @param encrypt require the connection to be encrypted
125 /*package*/ BluetoothServerSocket(int type, boolean auth, boolean encrypt, ParcelUuid uuid)
127 mSocket = new BluetoothSocket(type, -1, auth, encrypt, null, -1, uuid);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
crypt.h 32 /* Encrypt at most 8 characters from KEY using salt to perturb DES. */
39 /* Encrypt data in BLOCK in place if EDFLAG is zero; otherwise decrypt
41 extern void encrypt (char *__block, int __edflag) __THROW __nonnull ((1));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
crypt.h 32 /* Encrypt at most 8 characters from KEY using salt to perturb DES. */
39 /* Encrypt data in BLOCK in place if EDFLAG is zero; otherwise decrypt
41 extern void encrypt (char *__libc_block, int __edflag) __THROW __nonnull ((1));
  /prebuilts/go/darwin-x86/src/crypto/cipher/
cipher.go 12 // using a given key. It provides the capability to encrypt
19 // Encrypt encrypts the first block in src into dst.
21 Encrypt(dst, src []byte)
  /prebuilts/go/linux-x86/src/crypto/cipher/
cipher.go 12 // using a given key. It provides the capability to encrypt
19 // Encrypt encrypts the first block in src into dst.
21 Encrypt(dst, src []byte)
  /system/keymaster/
key_blob_test.cpp 67 keymaster_error_t Encrypt() {
100 ASSERT_EQ(KM_ERROR_OK, Encrypt());
128 ASSERT_EQ(KM_ERROR_OK, Encrypt());
138 ASSERT_EQ(KM_ERROR_OK, Encrypt());
155 ASSERT_EQ(KM_ERROR_OK, Encrypt());
172 ASSERT_EQ(KM_ERROR_OK, Encrypt());
189 ASSERT_EQ(KM_ERROR_OK, Encrypt());
203 ASSERT_EQ(KM_ERROR_OK, Encrypt());
226 ASSERT_EQ(KM_ERROR_OK, Encrypt());
249 ASSERT_EQ(KM_ERROR_OK, Encrypt());
    [all...]
ecies_kem.h 42 bool Encrypt(const Buffer& peer_public_value, Buffer* output_clear_key,
44 bool Encrypt(const uint8_t* peer_public_value, size_t peer_public_value_len,
kem.h 40 virtual bool Encrypt(const Buffer& peer_public_value, Buffer* output_clear_key,
42 virtual bool Encrypt(const uint8_t* peer_public_value, size_t peer_public_value_len,
  /external/syslinux/gpxe/src/include/gpxe/
crypto.h 69 /** Encrypt data
72 * @v src Data to encrypt
78 void ( * encrypt ) ( void *ctx, const void *src, void *dst, member in struct:cipher_algorithm
129 cipher->encrypt ( ctx, src, dst, len );
  /libcore/support/src/test/java/tests/security/
CipherAsymmetricCryptHelper.java 24 private static final String plainData = "some data to encrypt and decrypt test";
CipherSymmetricCryptHelper.java 24 private static final String plainData = "some data to encrypt and decrypt test";
  /system/sepolicy/prebuilts/api/26.0/public/
vdc.te 3 # encrypt
  /system/sepolicy/public/
vdc.te 3 # encrypt
  /external/wpa_supplicant_8/src/crypto/
aes-ctr.c 21 * @data: Data to encrypt in-place
63 * @data: Data to encrypt in-place
  /external/openssh/
PROTOCOL.chacha20poly1305 41 to encrypt the 4 byte packet length field. The second instance,
43 (Authenticated Encryption with Associated Data) that is used to encrypt
49 the MAC. By using an independently-keyed cipher instance to encrypt the
80 To send a packet, first encode the 4 byte length and encrypt it using
81 K_1. Encrypt the packet payload (using K_2) and append it to the
88 used to encrypt more than 2^70 bytes under the same {key, nonce}. The
  /frameworks/base/services/core/java/com/android/server/locksettings/
SyntheticPasswordCrypto.java 67 private static byte[] encrypt(SecretKey key, byte[] blob) method in class:SyntheticPasswordCrypto
88 public static byte[] encrypt(byte[] keyBytes, byte[] personalisation, byte[] message) { method in class:SyntheticPasswordCrypto
93 return encrypt(key, message);
153 byte[] intermediate = encrypt(secretKey, data);
154 return encrypt(applicationId, APPLICATION_ID_PERSONALIZATION, intermediate);
161 throw new RuntimeException("Failed to encrypt blob", e);
  /prebuilts/go/darwin-x86/src/crypto/rand/
rand_unix.go 136 // t = encrypt(time)
137 // dst = encrypt(t^seed)
138 // seed = encrypt(t^dst)
148 r.cipher.Encrypt(r.time[0:], r.time[0:])
152 r.cipher.Encrypt(r.dst[0:], r.dst[0:])
156 r.cipher.Encrypt(r.seed[0:], r.seed[0:])
  /prebuilts/go/linux-x86/src/crypto/rand/
rand_unix.go 136 // t = encrypt(time)
137 // dst = encrypt(t^seed)
138 // seed = encrypt(t^dst)
148 r.cipher.Encrypt(r.time[0:], r.time[0:])
152 r.cipher.Encrypt(r.dst[0:], r.dst[0:])
156 r.cipher.Encrypt(r.seed[0:], r.seed[0:])
  /device/google/contexthub/util/nanoapp_encr/
nanoapp_encr.c 128 //encrypt and emit data
144 // finally, encrypt and output SHA2 hash
244 " -e : encrypt post-processed file\n"
266 bool encrypt = false; local
278 encrypt = true;
314 if (encrypt)
325 if (encrypt && !keyId)
326 fatalUsage(appName, "Non-zero Key ID must be given to encrypt data", NULL);
342 if (encrypt)
  /external/boringssl/src/fipstools/
cavp_tdes_test.cc 45 if (t->HasInstruction("ENCRYPT") == t->HasInstruction("DECRYPT")) {
46 t->PrintLine("Want either ENCRYPT or DECRYPT");
52 } operation = t->HasInstruction("ENCRYPT") ? kEncrypt : kDecrypt;
63 std::string header = operation == kEncrypt ? "[ENCRYPT]" : "[DECRYPT]";
127 std::string header = operation == kEncrypt ? "[ENCRYPT]" : "[DECRYPT]";
173 if (t->HasInstruction("ENCRYPT") == t->HasInstruction("DECRYPT")) {
174 t->PrintLine("Want either ENCRYPT or DECRYPT");
180 } operation = t->HasInstruction("ENCRYPT") ? kEncrypt : kDecrypt;
264 operation == kEncrypt ? "ENCRYPT" : "DECRYPT";
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpcsvc/
key_prot.x 97 * Argument to ENCRYPT or DECRYPT
115 * Result of ENCRYPT, DECRYPT, ENCRYPT_PK, and DECRYPT_PK
180 * Encrypt a conversation key for me.
222 * Encrypt a conversation key for me.
249 * Encrypt a conversation key for me.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpcsvc/
key_prot.x 97 * Argument to ENCRYPT or DECRYPT
115 * Result of ENCRYPT, DECRYPT, ENCRYPT_PK, and DECRYPT_PK
180 * Encrypt a conversation key for me.
222 * Encrypt a conversation key for me.
249 * Encrypt a conversation key for me.
  /system/tpm/trunks/
trunks_client_test.h 51 // and use it to encrypt and decrypt arbitrary data.
55 // to encrypt and decrypt some data.
59 // still use it to encrypt/decrypt data.
78 // encrypt/decrypt.
104 // This method verifies that plaintext == decrypt(encrypt(plaintext)) using
  /external/syslinux/gpxe/src/crypto/
arc4.c 65 * @v srcv Data to encrypt or decrypt
110 * @v src Message to encrypt or decrypt
129 .encrypt = arc4_xor,

Completed in 951 milliseconds

12 3 4 5 6 7 8 91011>>