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

1 2 3

  /hardware/qcom/media/msm8974/mm-video-legacy/DivxDrmDecrypt/inc/
DivXDrmDecrypt.h 34 //Abstract base class of API to decrypt DRM content.
40 virtual OMX_ERRORTYPE Decrypt(OMX_BUFFERHEADERTYPE* buffer) = 0;
  /hardware/qcom/media/msm8974/mm-video-v4l2/DivxDrmDecrypt/inc/
DivXDrmDecrypt.h 34 //Abstract base class of API to decrypt DRM content.
40 virtual OMX_ERRORTYPE Decrypt(OMX_BUFFERHEADERTYPE* buffer) = 0;
  /system/keymaster/
kem.h 45 // Decrypt takes an encrypted key, and outputs its clear text.
46 // Decrypt takes ownership of \p private_key.
47 virtual bool Decrypt(EC_KEY* private_key, const Buffer& encrypted_key, Buffer* output_key) = 0;
48 virtual bool Decrypt(EC_KEY* private_key, const uint8_t* encrypted_key,
ecies_kem.h 47 bool Decrypt(EC_KEY* private_key, const Buffer& encrypted_key, Buffer* output_key) override;
48 bool Decrypt(EC_KEY* private_key, const uint8_t* encrypted_key, size_t encrypted_key_len,
ecies_kem.cpp 129 bool EciesKem::Decrypt(EC_KEY* private_key, const Buffer& encrypted_key, Buffer* output_key) {
130 return Decrypt(private_key, encrypted_key.peek_read(), encrypted_key.available_read(),
135 bool EciesKem::Decrypt(EC_KEY* private_key, const uint8_t* encrypted_key, size_t encrypted_key_len,
ecies_kem_test.cpp 65 kem->Decrypt(key_exchange->private_key(), output_encrypted_key, &decrypted_clear_key));
key_blob_test.cpp 72 keymaster_error_t Decrypt() {
151 ASSERT_EQ(KM_ERROR_INVALID_KEY_BLOB, Decrypt());
168 ASSERT_EQ(KM_ERROR_INVALID_KEY_BLOB, Decrypt());
185 ASSERT_EQ(KM_ERROR_INVALID_KEY_BLOB, Decrypt());
222 ASSERT_EQ(KM_ERROR_INVALID_KEY_BLOB, Decrypt());
245 ASSERT_EQ(KM_ERROR_INVALID_KEY_BLOB, Decrypt());
  /device/linaro/bootloader/edk2/CryptoPkg/Application/Cryptest/
BlockCipherVerify.c 149 UINT8 Decrypt[256];
166 ZeroMem (Decrypt, sizeof (Decrypt));
180 Status = TdesEcbDecrypt (CipherCtx, Encrypt, 8, Decrypt);
191 if (CompareMem (Decrypt, TdesEcbData, 8) != 0) {
202 ZeroMem (Decrypt, sizeof (Decrypt));
216 Status = TdesEcbDecrypt (CipherCtx, Encrypt, 8, Decrypt);
227 if (CompareMem (Decrypt, TdesEcbData, 8) != 0) {
238 ZeroMem (Decrypt, 256);
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/des/
cipher.go 41 func (c *desCipher) Decrypt(dst, src []byte) { decryptBlock(c.subkeys[:], dst, src) }
65 c.cipher2.Decrypt(dst, dst)
69 func (c *tripleDESCipher) Decrypt(dst, src []byte) {
70 c.cipher3.Decrypt(dst, src)
72 c.cipher1.Decrypt(dst, dst)
  /prebuilts/go/linux-x86/src/crypto/des/
cipher.go 41 func (c *desCipher) Decrypt(dst, src []byte) { decryptBlock(c.subkeys[:], dst, src) }
65 c.cipher2.Decrypt(dst, dst)
69 func (c *tripleDESCipher) Decrypt(dst, src []byte) {
70 c.cipher3.Decrypt(dst, src)
72 c.cipher1.Decrypt(dst, dst)
  /system/tpm/attestation/common/
mock_attestation_interface.h 51 MOCK_METHOD2(Decrypt, void(const DecryptRequest&, const DecryptCallback&));
attestation_interface.h 87 virtual void Decrypt(const DecryptRequest& request,
  /external/pdfium/core/fpdfapi/parser/
cpdf_crypto_handler.h 26 void Decrypt(uint32_t objnum, uint32_t gennum, CFX_ByteString& str);
  /system/tpm/attestation/client/
dbus_proxy.h 58 void Decrypt(const DecryptRequest& request,
  /prebuilts/go/darwin-x86/src/crypto/cipher/
ctr_test.go 17 func (noopBlock) Decrypt(dst, src []byte) { copy(dst, src) }
cipher.go 13 // or decrypt individual blocks. The mode implementations
23 // Decrypt decrypts the first block in src into dst.
25 Decrypt(dst, src []byte)
  /prebuilts/go/linux-x86/src/crypto/cipher/
ctr_test.go 17 func (noopBlock) Decrypt(dst, src []byte) { copy(dst, src) }
cipher.go 13 // or decrypt individual blocks. The mode implementations
23 // Decrypt decrypts the first block in src into dst.
25 Decrypt(dst, src []byte)
  /prebuilts/go/darwin-x86/src/crypto/aes/
aes_test.go 302 // Test Cipher Decrypt against FIPS 197 examples.
311 c.Decrypt(plain, tt.out)
330 mustPanic(t, "crypto/aes: input not full block", func() { c.Decrypt(bytes(1), bytes(1)) })
332 mustPanic(t, "crypto/aes: input not full block", func() { c.Decrypt(bytes(100), bytes(1)) })
334 mustPanic(t, "crypto/aes: output not full block", func() { c.Decrypt(bytes(1), bytes(100)) })
373 c.Decrypt(out, tt.out)
cipher.go 63 func (c *aesCipher) Decrypt(dst, src []byte) {
cipher_amd64.go 58 func (c *aesCipherAsm) Decrypt(dst, src []byte) {
  /prebuilts/go/linux-x86/src/crypto/aes/
aes_test.go 302 // Test Cipher Decrypt against FIPS 197 examples.
311 c.Decrypt(plain, tt.out)
330 mustPanic(t, "crypto/aes: input not full block", func() { c.Decrypt(bytes(1), bytes(1)) })
332 mustPanic(t, "crypto/aes: input not full block", func() { c.Decrypt(bytes(100), bytes(1)) })
334 mustPanic(t, "crypto/aes: output not full block", func() { c.Decrypt(bytes(1), bytes(100)) })
373 c.Decrypt(out, tt.out)
cipher.go 63 func (c *aesCipher) Decrypt(dst, src []byte) {
cipher_amd64.go 58 func (c *aesCipherAsm) Decrypt(dst, src []byte) {
  /frameworks/av/drm/mediacas/plugins/clearkey/
ClearKeyFetcher.cpp 108 status = container.mutable_descriptor(i)->mutable_ecm()->Decrypt(

Completed in 573 milliseconds

1 2 3