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

1 2 3 4 5 6 7 8 910

  /hardware/qcom/media/msm8974/mm-video-legacy/DivxDrmDecrypt/src/
DivXDrmDecrypt.cpp 92 DivXDrmDecrypt* decrypt = drmCreateFunc(); local
93 if( decrypt == NULL ) {
96 return decrypt;
  /hardware/qcom/media/msm8974/mm-video-v4l2/DivxDrmDecrypt/src/
DivXDrmDecrypt.cpp 97 DivXDrmDecrypt* decrypt = drmCreateFunc(); local
99 if ( decrypt == NULL ) {
103 return decrypt;
  /frameworks/av/drm/mediadrm/plugins/clearkey/hidl/include/
AesCtrDecryptor.h 35 Status decrypt(const std::vector<uint8_t>& key, const Iv iv,
  /external/fonttools/Lib/fontTools/misc/
eexec.py 21 def decrypt(cipherstring, R): function
50 print(decrypt, decrypt(testStr, 12321))
  /prebuilts/go/darwin-x86/src/crypto/cipher/
cfb.go 15 decrypt bool
25 if x.decrypt {
33 if !x.decrypt {
56 func newCFB(block Block, iv []byte, decrypt bool) Stream {
67 decrypt: decrypt,
  /prebuilts/go/linux-x86/src/crypto/cipher/
cfb.go 15 decrypt bool
25 if x.decrypt {
33 if !x.decrypt {
56 func newCFB(block Block, iv []byte, decrypt bool) Stream {
67 decrypt: decrypt,
  /external/tpm2/
Unseal.c 33 if( object->publicArea.objectAttributes.decrypt == SET
ActivateCredential.c 32 OBJECT *object; // decrypt key
39 // Get decrypt key pointer
45 // input decrypt key must be an asymmetric, restricted decryption key
47 || object->publicArea.objectAttributes.decrypt == CLEAR
53 // Decrypt input credential data via asymmetric decryption. A
EncryptDecrypt_fp.h 14 TPMI_YES_NO decrypt; member in struct:__anon40357
MakeCredential.c 39 || object->publicArea.objectAttributes.decrypt == CLEAR
ECDH_KeyGen.c 32 // Input key must be a non-restricted, decrypt ECC key
37 || eccKey->publicArea.objectAttributes.decrypt != SET
ECDH_ZGen.c 15 // TPM_RC_ATTRIBUTES key referenced by keyA is restricted or not a decrypt key
34 // Input key must be a non-restricted, decrypt ECC key
39 || eccKey->publicArea.objectAttributes.decrypt != SET
RSA_Decrypt.c 17 // TPM_RC_KEY keyHandle does not reference an unrestricted decrypt key
19 // decrypt scheme
46 || rsaKey->publicArea.objectAttributes.decrypt == CLEAR)
65 // Select a scheme for decrypt.
  /frameworks/av/drm/mediadrm/plugins/clearkey/default/include/
AesCtrDecryptor.h 34 android::status_t decrypt(const android::Vector<uint8_t>& key, const Iv iv,
CryptoPlugin.h 45 virtual ssize_t decrypt(
  /hardware/interfaces/drm/1.0/
ICryptoPlugin.hal 25 * load crypto keys for a codec to decrypt protected video content.
60 * Set a shared memory base for subsequent decrypt operations. The buffer
62 * After the shared buffer base is established, the decrypt() method
64 * for decrypt source and destination addresses.
77 * Decrypt an array of subsamples from the source memory buffer to the
90 * of clear and encrypted bytes to process. This allows the decrypt
102 * ERROR_DRM_SESSION_NOT_OPENED if the decrypt session is not opened,
103 * ERROR_DRM_DECRYPT if the decrypt operation fails, and
110 decrypt(bool secure, uint8_t[16] keyId, uint8_t[16] iv, Mode mode,
  /frameworks/base/services/core/java/com/android/server/locksettings/
SyntheticPasswordCrypto.java 53 private static byte[] decrypt(SecretKey key, byte[] blob) method in class:SyntheticPasswordCrypto
101 public static byte[] decrypt(byte[] keyBytes, byte[] personalisation, byte[] ciphertext) { method in class:SyntheticPasswordCrypto
106 return decrypt(key, ciphertext);
121 byte[] intermediate = decrypt(applicationId, APPLICATION_ID_PERSONALIZATION, blob);
122 return decrypt(decryptionKey, intermediate);
125 throw new RuntimeException("Failed to decrypt blob", e);
135 byte[] intermediate = decrypt(decryptionKey, blob);
136 return decrypt(applicationId, APPLICATION_ID_PERSONALIZATION, intermediate);
143 throw new RuntimeException("Failed to decrypt blob", e);
  /frameworks/native/headers/media_plugin/media/hardware/
HDCPAPI.h 55 // future calls to "decrypt".
126 // Decrypt data according to the HDCP spec.
134 virtual status_t decrypt( function in struct:android::HDCPModule
  /frameworks/av/drm/mediadrm/plugins/clearkey/default/
CryptoPlugin.cpp 35 ssize_t CryptoPlugin::decrypt(bool secure, const KeyId keyId, const Iv iv, function in class:clearkeydrm::CryptoPlugin
67 status_t res = mSession->decrypt(keyId, iv, srcPtr, dstPtr, subSamples,
Session.cpp 64 status_t Session::decrypt( function in class:clearkeydrm::Session
78 return decryptor.decrypt(
  /frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/recoverablekeystore/
SecureBoxTest.java 172 SecureBox.decrypt(
182 SecureBox.decrypt(
197 state = SecureBox.decrypt(THM_PRIVATE_KEY, TEST_SHARED_SECRET, TEST_HEADER, state);
208 SecureBox.decrypt(
219 SecureBox.decrypt(THM_PRIVATE_KEY, /*sharedSecret=*/ null, TEST_HEADER, encrypted);
229 SecureBox.decrypt(THM_PRIVATE_KEY, TEST_SHARED_SECRET, /*header=*/ null, encrypted);
239 SecureBox.decrypt(
267 SecureBox.decrypt(
281 SecureBox.decrypt(
298 SecureBox.decrypt(
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/
crypto.h 80 /** Decrypt data
83 * @v src Data to decrypt
89 void ( * decrypt ) ( void *ctx, const void *src, void *dst, member in struct:cipher_algorithm
139 cipher->decrypt ( ctx, src, dst, len );
  /frameworks/av/drm/mediadrm/plugins/clearkey/hidl/
Session.cpp 70 Status Session::decrypt( function in class:android::hardware::drm::V1_1::clearkey::Session
86 return decryptor.decrypt(
  /system/core/rootdir/
asan_extract.sh 32 # Checks for FDE pre-decrypt state.
34 VOLD_STATUS=$(getprop vold.decrypt)
36 log -p i -t asan_install "Pre-decrypt FDE detected (by vold property)!"
42 log -p i -t asan_install "Pre-decrypt FDE detected (by /data size)!"
  /external/syslinux/gpxe/src/crypto/
crypto_null.c 81 .decrypt = cipher_null_decrypt,

Completed in 361 milliseconds

1 2 3 4 5 6 7 8 910