Searched refs:decrypt (Results 1 - 25 of 115) sorted by relevance

12345

/macosx-10.10/OpenSSH-189/openssh/
H A Drijndael.h41 int decrypt; member in struct:__anon3211
44 u32 dk[4*(MAXNR + 1)]; /* decrypt key schedule */
/macosx-10.10/Security-57031.1.35/Security/include/security_cdsa_client/
H A Dcryptoclient.h98 CSSM_SIZE decrypt(const CssmData *in, uint32 inCount, CssmData *out, uint32 outCount,
100 CSSM_SIZE decrypt(const CssmData &in, CssmData &out, CssmData &remData) function in class:Security::CssmClient::Decrypt
101 { return decrypt(&in, 1, &out, 1, remData); }
105 CSSM_SIZE decrypt(const CssmData *in, uint32 inCount, CssmData *out, uint32 outCount);
106 CSSM_SIZE decrypt(const CssmData &in, CssmData &out) function in class:Security::CssmClient::Decrypt
107 { return decrypt(&in, 1, &out, 1); }
H A Dcryptoclient.cpp111 Decrypt::decrypt(const CssmData *in, uint32 inCount, function in class:Decrypt
128 Decrypt::decrypt(const CssmData *in, uint32 inCount, function in class:Decrypt
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cdsa_client/lib/
H A Dcryptoclient.h98 CSSM_SIZE decrypt(const CssmData *in, uint32 inCount, CssmData *out, uint32 outCount,
100 CSSM_SIZE decrypt(const CssmData &in, CssmData &out, CssmData &remData) function in class:Security::CssmClient::Decrypt
101 { return decrypt(&in, 1, &out, 1, remData); }
105 CSSM_SIZE decrypt(const CssmData *in, uint32 inCount, CssmData *out, uint32 outCount);
106 CSSM_SIZE decrypt(const CssmData &in, CssmData &out) function in class:Security::CssmClient::Decrypt
107 { return decrypt(&in, 1, &out, 1); }
H A Dcryptoclient.cpp111 Decrypt::decrypt(const CssmData *in, uint32 inCount, function in class:Decrypt
128 Decrypt::decrypt(const CssmData *in, uint32 inCount, function in class:Decrypt
/macosx-10.10/CPANInternal-159.1/Crypt-Rijndael-1.10/t/lib/
H A Dmode.pl13 my $plain = $c->decrypt( $cipher );
/macosx-10.10/Security-57031.1.35/SecurityTests/cspxutils/perform/
H A Dperform.cpp56 auto_ptr<Security::CssmClient::Decrypt> &decrypt,
80 decrypt.reset(new Security::CssmClient::Decrypt(csp, encrAlg));
81 decrypt->mode(encrMode);
82 decrypt->key(key);
84 decrypt->add(CSSM_ATTRIBUTE_BLOCK_SIZE, blockSizeInBits / 8);
86 //decrypt->activate();
121 cdsaDecrypt(int iterations, Security::CssmClient::Decrypt &decrypt, argument
131 decrypt.initVector(iv);
136 decrypt.initVector(iv);
137 decrypt
54 cdsaSetupContexts(int iterations, auto_ptr<Security::CssmClient::Encrypt> &encrypt, auto_ptr<Security::CssmClient::Decrypt> &decrypt, CSSM_ALGORITHMS keyAlg, CSSM_ALGORITHMS encrAlg, CSSM_ENCRYPT_MODE encrMode, uint32 keySizeInBits, uint32 blockSizeInBits) argument
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_ssl/Security/
H A DsslNullCipher.c70 .decrypt = NullCrypt
H A DsymCipher.c167 /* same for en/decrypt */
300 /* same for en/decrypt */
330 /* same for en/decrypt */
355 /* same for en/decrypt */
482 .decrypt = CCSymmEncryptDecrypt
494 .decrypt = CCSymmEncryptDecrypt
506 .decrypt = CCSymmEncryptDecrypt
518 .decrypt = CCSymmEncryptDecrypt
530 .decrypt = CCSymmEncryptDecrypt
542 .decrypt
[all...]
H A DsymCipher.h94 SSLCryptFunc decrypt; member in struct:__anon4960
102 SSLCryptFunc decrypt; member in struct:__anon4961
/macosx-10.10/Security-57031.1.35/Security/libsecurity_ssl/lib/
H A DsslNullCipher.c70 .decrypt = NullCrypt
H A DsymCipher.c167 /* same for en/decrypt */
300 /* same for en/decrypt */
330 /* same for en/decrypt */
355 /* same for en/decrypt */
482 .decrypt = CCSymmEncryptDecrypt
494 .decrypt = CCSymmEncryptDecrypt
506 .decrypt = CCSymmEncryptDecrypt
518 .decrypt = CCSymmEncryptDecrypt
530 .decrypt = CCSymmEncryptDecrypt
542 .decrypt
[all...]
H A DsymCipher.h94 SSLCryptFunc decrypt; member in struct:__anon5003
102 SSLCryptFunc decrypt; member in struct:__anon5004
/macosx-10.10/Security-57031.1.35/Security/libsecurity_ssl/security_ssl/
H A DsslNullCipher.c70 .decrypt = NullCrypt
H A DsymCipher.c167 /* same for en/decrypt */
300 /* same for en/decrypt */
330 /* same for en/decrypt */
355 /* same for en/decrypt */
482 .decrypt = CCSymmEncryptDecrypt
494 .decrypt = CCSymmEncryptDecrypt
506 .decrypt = CCSymmEncryptDecrypt
518 .decrypt = CCSymmEncryptDecrypt
530 .decrypt = CCSymmEncryptDecrypt
542 .decrypt
[all...]
H A DsymCipher.h94 SSLCryptFunc decrypt; member in struct:__anon5057
102 SSLCryptFunc decrypt; member in struct:__anon5058
/macosx-10.10/Security-57031.1.35/SecurityTests/testclient/
H A Dcsptests.cpp41 printf("\n* performing encrypt/decrypt test...\n");
79 Decrypt decrypt(csp, CSSM_ALGID_DES);
80 decrypt.key(key);
81 decrypt.mode(CSSM_ALGMODE_CBCPadIV8);
82 decrypt.padding(CSSM_PADDING_PKCS1);
83 decrypt.initVector(iv);
87 decrypt.decrypt(inp, 2, &plain, 1);
88 decrypt.final(remplain);
94 printf("end encrypt/decrypt tes
[all...]
H A Ddltests.cpp246 printf("\n* performing encrypt/decrypt test...\n");
291 Decrypt decrypt(cspdl, CSSM_ALGID_DES);
292 decrypt.key(key);
293 decrypt.mode(CSSM_ALGMODE_CBCPadIV8);
294 decrypt.padding(CSSM_PADDING_PKCS1);
295 decrypt.initVector(iv);
299 decrypt.decrypt(inp, 2, &plain, 1);
300 decrypt.final(remplain);
306 printf("end encrypt/decrypt tes
[all...]
/macosx-10.10/ruby-106/ruby/sample/openssl/
H A Dsmime_read.rb16 data = p7enc.decrypt(key, cert)
/macosx-10.10/tcl-105/tcl_ext/expect/expect/example/
H A Dcryptdir15 # encrypt or decrypt?
16 set decrypt [regexp "decrypt" $argv0]
25 # Wouldn't want to encrypt/decrypt files with mistyped password!
45 if {$decrypt} {
H A Ddecryptdir15 # encrypt or decrypt?
16 set decrypt [regexp "decrypt" $argv0]
25 # Wouldn't want to encrypt/decrypt files with mistyped password!
45 if {$decrypt} {
/macosx-10.10/BerkeleyDB-21/db/dbinc/
H A Dcrypto.h41 int (*decrypt) __P((ENV *, void *, void *, u_int8_t *, size_t)); member in struct:__db_cipher
/macosx-10.10/xnu-2782.1.97/bsd/netinet6/
H A Desp.h110 int (*decrypt)(struct mbuf *, size_t, member in struct:esp_algorithm
/macosx-10.10/CPANInternal-159.1/Crypt-Rijndael-1.10/t/rt/
H A D27632.t33 # decrypt to see if we get back the same thing
37 my $out_plain = $cipher->decrypt( $crypt );
/macosx-10.10/WebCore-7600.1.25/crypto/
H A DCryptoAlgorithm.cpp48 void CryptoAlgorithm::decrypt(const CryptoAlgorithmParameters&, const CryptoKey&, const CryptoOperationData&, VectorCallback, VoidCallback, ExceptionCode& ec) function in class:WebCore::CryptoAlgorithm
95 decrypt(parameters, key, data, callback, failureCallback, ec);

Completed in 376 milliseconds

12345