Home
last modified time | relevance | path

Searched refs:decrypt (Results 1 – 25 of 88) sorted by relevance

1234

/external/python/rsa/doc/
Dcli.rst12 .. index:: pyrsa-keygen, pyrsa-encrypt, pyrsa-decrypt, pyrsa-sign
14 .. index:: pyrsa-decrypt-bigfile, pyrsa-decrypt-bigfile
24 | pyrsa-decrypt | Decrypts a file. | :py:func:`rsa.decryp…
40 | *pyrsa-decrypt-bigfile* | *Decrypts an encrypted VARBLOCK file.* | *Deprecated in Pytho…
Dusage.rst97 To encrypt or decrypt a message, use :py:func:`rsa.encrypt` resp.
98 :py:func:`rsa.decrypt`. Let's say that Alice wants to send a message
122 >>> message = rsa.decrypt(crypto, bob_priv)
144 >>> rsa.decrypt(crypto, bob_priv)
274 1. decrypt/encrypt_bigfile() does not implement `Authenticated encryption`_ nor
277 2. decrypt/encrypt_bigfile() does not use hybrid encryption (it uses plain RSA)
Dupgrading.rst33 use an old version to decrypt your messages, and a new version to
39 decrypted = rsa200.decrypt(old_crypto, version_200_private_key)
/external/grpc-grpc-java/alts/src/test/java/io/grpc/alts/internal/
DChannelCrypterNettyTestBase.java93 server.decrypt(frameDecrypt.out, frameDecrypt.tag, frameDecrypt.ciphertext); in encryptDecrypt()
109 server.decrypt(frameDecrypt.out, frameEncrypt.out); in encryptDecryptLarge()
122 server.decrypt(frameDecrypt.out, frameDecrypt.tag, frameDecrypt.ciphertext); in encryptDecryptMultiple()
157 server.decrypt(frameDecrypt.out, frameDecrypt.tag, frameDecrypt.ciphertext); in encryptDecryptComposite()
169 client.decrypt(frameDecrypt.out, frameDecrypt.tag, frameDecrypt.ciphertext); in reflection()
186 client.decrypt(frameDecrypt.out, frameDecrypt.tag, frameDecrypt.ciphertext); in skipMessage()
202 client.decrypt(frameDecrypt.out, frameDecrypt.tag, frameDecrypt.ciphertext); in corruptMessage()
217 server.decrypt(frameDecrypt1.out, frameDecrypt1.tag, frameDecrypt1.ciphertext); in replayMessage()
220 server.decrypt(frameDecrypt2.out, frameDecrypt2.tag, frameDecrypt2.ciphertext); in replayMessage()
DFakeChannelCrypter.java49 public void decrypt(ByteBuf out, ByteBuf tag, List<ByteBuf> ciphertext) in decrypt() method in FakeChannelCrypter
63 public void decrypt(ByteBuf out, ByteBuf ciphertextAndTag) throws GeneralSecurityException { in decrypt() method in FakeChannelCrypter
66 decrypt(out, /*tag=*/ ciphertextAndTag, Collections.singletonList(ciphertext)); in decrypt()
DAltsChannelCrypterTest.java71 server.decrypt(frameDecrypt1.out, frameDecrypt1.tag, frameDecrypt1.ciphertext); in encryptDecryptKdfCounterIncr()
84 server.decrypt(frameDecrypt2.out, frameDecrypt2.tag, frameDecrypt2.ciphertext); in encryptDecryptKdfCounterIncr()
/external/scapy/test/
Dipsec.uts38 d = sa.decrypt(e)
71 d = sa.decrypt(e)
90 d_ref = sa.decrypt(ref)
123 d = sa.decrypt(e)
142 d_ref = sa.decrypt(ref)
174 d = sa.decrypt(e)
194 d_ref = sa.decrypt(ref)
226 d = sa.decrypt(e)
245 d_ref = sa.decrypt(ref)
277 d = sa.decrypt(e)
[all …]
/external/grpc-grpc-java/alts/src/main/java/io/grpc/alts/internal/
DAesGcmHkdfAeadCrypter.java74 public void decrypt(ByteBuffer plaintext, ByteBuffer ciphertext, byte[] nonce) in decrypt() method in AesGcmHkdfAeadCrypter
78 aeadCrypter.decrypt(plaintext, ciphertext, nonceBuffer); in decrypt()
82 public void decrypt(ByteBuffer plaintext, ByteBuffer ciphertext, ByteBuffer aad, byte[] nonce) in decrypt() method in AesGcmHkdfAeadCrypter
86 aeadCrypter.decrypt(plaintext, ciphertext, aad, nonceBuffer); in decrypt()
DAltsChannelCrypter.java82 public void decrypt(ByteBuf out, ByteBuf tag, List<ByteBuf> ciphertextBufs) in decrypt() method in AltsChannelCrypter
93 decrypt(out, cipherTextAndTag); in decrypt()
98 public void decrypt(ByteBuf out, ByteBuf ciphertextAndTag) throws GeneralSecurityException { in decrypt() method in AltsChannelCrypter
111 aeadCrypter.decrypt(outBuffer, ciphertextAndTagBuffer, counter); in decrypt()
DChannelCrypterNetty.java56 void decrypt(ByteBuf out, ByteBuf tag, List<ByteBuf> ciphertext) throws GeneralSecurityException; in decrypt() method
69 void decrypt(ByteBuf out, ByteBuf ciphertextAndTag) throws GeneralSecurityException; in decrypt() method
DAeadCrypter.java61 void decrypt(ByteBuffer plaintext, ByteBuffer ciphertext, byte[] nonce) in decrypt() method
74 void decrypt(ByteBuffer plaintext, ByteBuffer ciphertext, ByteBuffer aad, byte[] nonce) in decrypt() method
DAesGcmAeadCrypter.java87 public void decrypt(ByteBuffer plaintext, ByteBuffer ciphertext, byte[] nonce) in decrypt() method in AesGcmAeadCrypter
93 public void decrypt(ByteBuffer plaintext, ByteBuffer ciphertext, ByteBuffer aad, byte[] nonce) in decrypt() method in AesGcmAeadCrypter
/external/fonttools/Tests/misc/
Deexec_test.py3 from fontTools.misc.eexec import decrypt, encrypt
8 decryptedStr, R = decrypt(testStr, 12321)
/external/fonttools/Lib/fontTools/t1Lib/
D__init__.py98 charString, R = eexec.decrypt(charString, 4330)
102 charString, R = eexec.decrypt(subrs[i], 4330)
294 decrypted, R = eexec.decrypt(chunk, 55665)
321 plainText, R = eexec.decrypt(cypherText, 55665)
/external/scapy/scapy/contrib/
Dmacsec.uts46 d = sa.decrypt(e)
64 d = sa.decrypt(e)
107 d = sa.decrypt(e)
125 d = sa.decrypt(e)
205 txdec = txsa.decap(txsa.decrypt(tx))
206 rxdec = rxsa.decap(rxsa.decrypt(rx))
218 rxdec = rxsa.decap(rxsa.decrypt(rx))
225 = MACsec - decrypt
230 txdec = txsa.decap(txsa.decrypt(tx))
231 rxdec = rxsa.decap(rxsa.decrypt(rx))
[all …]
/external/python/rsa/tests/
Dtest_cli.py196 self.assertExits(1, rsa.cli.decrypt)
213 rsa.cli.decrypt()
235 self.assertRaises(rsa.DecryptionError, rsa.cli.decrypt)
Dtest_pkcs1.py38 decrypted = pkcs1.decrypt(encrypted, self.priv)
54 self.assertRaises(pkcs1.DecryptionError, pkcs1.decrypt, encrypted,
Dtest_strings.py39 decrypted = rsa.decrypt(encrypted, self.priv)
/external/boringssl/src/crypto/evp/
Devp_ctx.c285 if (!ctx || !ctx->pmeth || !ctx->pmeth->decrypt) { in EVP_PKEY_decrypt_init()
295 if (!ctx || !ctx->pmeth || !ctx->pmeth->decrypt) { in EVP_PKEY_decrypt()
303 return ctx->pmeth->decrypt(ctx, out, outlen, in, inlen); in EVP_PKEY_decrypt()
340 !(ctx->pmeth->derive || ctx->pmeth->encrypt || ctx->pmeth->decrypt) || in EVP_PKEY_derive_set_peer()
/external/scapy/scapy/layers/tls/crypto/
Dcipher_aead.py202 P = self._cipher.decrypt(self._get_nonce(), C + mac, A,
205 P = self._cipher.decrypt(self._get_nonce(), C + mac, A)
354 P = self._cipher.decrypt(self._get_nonce(seq_num), C + mac, A,
360 P = self._cipher.decrypt(self._get_nonce(seq_num), C + mac, A)
Dcipher_stream.py89 def decrypt(self, data): member in _StreamCipher
132 def decrypt(self, data): member in Cipher_NULL
/external/pdfium/core/fdrm/crypto/
Dfx_crypt_aes.cpp694 ctx->encrypt = aes_encrypt_nb_8, ctx->decrypt = aes_decrypt_nb_8; in aes_setup()
696 ctx->encrypt = aes_encrypt_nb_6, ctx->decrypt = aes_decrypt_nb_6; in aes_setup()
698 ctx->encrypt = aes_encrypt_nb_4, ctx->decrypt = aes_decrypt_nb_4; in aes_setup()
751 ctx->decrypt(ctx, block); in aes_decrypt()
/external/ltp/testcases/commands/tpm-tools/tpmtoken/tpmtoken_protect/
D00_Descriptions.txt4 tpmtoken_protect decrypt a file
/external/python/rsa/rsa/
D__init__.py27 from rsa.pkcs1 import encrypt, decrypt, sign, verify, DecryptionError, \
/external/openssh/
Drijndael.h46 int decrypt; member

1234