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

12345

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/
H A Daes.h47 * @param decrypt 0 for encryption, 1 for decryption
49 int av_aes_init(struct AVAES *a, const uint8_t *key, int key_bits, int decrypt);
52 * Encrypt or decrypt a buffer using a previously initialized context.
57 * @param decrypt 0 for encryption, 1 for decryption
59 void av_aes_crypt(struct AVAES *a, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, int decrypt);
H A Drc4.h35 * @param decrypt 0 for encryption, 1 for decryption, currently has no effect
37 int av_rc4_init(struct AVRC4 *d, const uint8_t *key, int key_bits, int decrypt);
46 * @param decrypt 0 for encryption, 1 for decryption, not (yet) used
48 void av_rc4_crypt(struct AVRC4 *d, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, int decrypt);
H A Dblowfish.h50 * Encrypt or decrypt a buffer using a previously initialized context.
55 * @param decrypt 0 for encryption, 1 for decryption
58 int decrypt);
61 * Encrypt or decrypt a buffer using a previously initialized context.
68 * @param decrypt 0 for encryption, 1 for decryption
71 int count, uint8_t *iv, int decrypt);
H A Ddes.h36 * @param decrypt 0 for encryption/CBC-MAC, 1 for decryption
38 int av_des_init(struct AVDES *d, const uint8_t *key, int key_bits, int decrypt);
48 * @param decrypt 0 for encryption, 1 for decryption
50 void av_des_crypt(struct AVDES *d, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, int decrypt);
H A Dxtea.h48 * Encrypt or decrypt a buffer using a previously initialized context.
55 * @param decrypt 0 for encryption, 1 for decryption
58 int count, uint8_t *iv, int decrypt);
H A Drc4.c29 int av_rc4_init(AVRC4 *r, const uint8_t *key, int key_bits, int decrypt) { argument
50 void av_rc4_crypt(AVRC4 *r, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, int decrypt) { argument
H A Dxtea.c45 int decrypt, uint8_t *iv)
58 if (decrypt) {
165 uint8_t *iv, int decrypt)
169 if (decrypt) {
171 xtea_crypt_ecb(ctx, dst, src, decrypt, iv);
181 xtea_crypt_ecb(ctx, dst, dst, decrypt, NULL);
184 xtea_crypt_ecb(ctx, dst, src, decrypt, NULL);
267 /* decrypt into pl */
44 xtea_crypt_ecb(AVXTEA *ctx, uint8_t *dst, const uint8_t *src, int decrypt, uint8_t *iv) argument
164 av_xtea_crypt(AVXTEA *ctx, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, int decrypt) argument
H A Ddes.c271 static uint64_t des_encdec(uint64_t in, uint64_t K[16], int decrypt) { argument
274 decrypt = decrypt ? 15 : 0;
279 f_res = f_func(in, K[decrypt ^ i]);
289 int av_des_init(AVDES *d, const uint8_t *key, int key_bits, av_unused int decrypt) { argument
301 static void av_des_crypt_mac(AVDES *d, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, int decrypt, int mac) { argument
306 if (decrypt) {
331 void av_des_crypt(AVDES *d, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, int decrypt) { argument
332 av_des_crypt_mac(d, dst, src, count, iv, decrypt, 0);
362 static int run_test(int cbc, int decrypt) { argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/
H A Daes.h39 * @param decrypt 0 for encryption, 1 for decryption
41 int av_aes_init(struct AVAES *a, const uint8_t *key, int key_bits, int decrypt);
44 * Encrypt or decrypt a buffer using a previously initialized context.
49 * @param decrypt 0 for encryption, 1 for decryption
51 void av_aes_crypt(struct AVAES *a, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, int decrypt);
H A Drc4.h35 * @param decrypt 0 for encryption, 1 for decryption, currently has no effect
37 int av_rc4_init(struct AVRC4 *d, const uint8_t *key, int key_bits, int decrypt);
46 * @param decrypt 0 for encryption, 1 for decryption, not (yet) used
48 void av_rc4_crypt(struct AVRC4 *d, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, int decrypt);
H A Ddes.h36 * @param decrypt 0 for encryption/CBC-MAC, 1 for decryption
38 int av_des_init(struct AVDES *d, const uint8_t *key, int key_bits, int decrypt);
48 * @param decrypt 0 for encryption, 1 for decryption
50 void av_des_crypt(struct AVDES *d, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, int decrypt);
H A Drc4.c29 int av_rc4_init(AVRC4 *r, const uint8_t *key, int key_bits, int decrypt) { argument
50 void av_rc4_crypt(AVRC4 *r, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, int decrypt) { argument
H A Ddes.c271 static uint64_t des_encdec(uint64_t in, uint64_t K[16], int decrypt) { argument
274 decrypt = decrypt ? 15 : 0;
279 f_res = f_func(in, K[decrypt ^ i]);
289 int av_des_init(AVDES *d, const uint8_t *key, int key_bits, int decrypt) { argument
301 static void av_des_crypt_mac(AVDES *d, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, int decrypt, int mac) { argument
306 if (decrypt) {
331 void av_des_crypt(AVDES *d, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, int decrypt) { argument
332 av_des_crypt_mac(d, dst, src, count, iv, decrypt, 0);
363 static int run_test(int cbc, int decrypt) { argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/cris/include/arch-v32/arch/hwregs/
H A Dstrcop.h12 unsigned char decrypt : 1; member in struct:strcop_meta_out
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/dbinc/
H A Dcrypto.h41 int (*decrypt) __P((ENV *, void *, void *, u_int8_t *, size_t)); member in struct:__db_cipher
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/crypto/
H A Dpadlock-aes.c63 struct cword decrypt; member in struct:aes_ctx::__anon11170
132 ctx->cword.decrypt.encdec = 1;
134 ctx->cword.decrypt.rounds = ctx->cword.encrypt.rounds;
136 ctx->cword.decrypt.ksize = ctx->cword.encrypt.ksize;
144 ctx->cword.decrypt.keygen = 1;
157 &ctx->cword.decrypt == per_cpu(paes_last_cword, cpu))
316 ecb_crypt(in, out, ctx->D, &ctx->cword.decrypt, 1);
380 padlock_reset_key(&ctx->cword.decrypt);
388 ctx->D, &ctx->cword.decrypt,
417 .decrypt
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zip30/
H A Dzipcloak.c216 " -d --decrypt decrypt encrypted entries (copy if given wrong password)",
292 {"d", "decrypt", o_NO_VALUE, o_NOT_NEGATABLE, 'd', "decrypt"},
304 * Encrypt or decrypt all of the entries in a zip file. See the command
314 int decrypt; /* decryption flag */ local
415 temp_path = decrypt = 0;
430 decrypt = 1; break;
506 decrypt = 1; break;
572 if (decrypt
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openvpn-2.3.1/src/openvpn/
H A Dcrypto.h78 #define KEY_DIRECTION_NORMAL 1 /* encrypt with keys[0], decrypt with keys[1] */
79 #define KEY_DIRECTION_INVERSE 2 /* encrypt with keys[1], decrypt with keys[0] */
127 struct key_ctx decrypt; /**< OpenSSL cipher and/or HMAC contexts member in struct:key_ctx_bi
248 * HMAC verify and decrypt a data channel packet received from a remote
393 return key->encrypt.cipher || key->encrypt.hmac || key->decrypt.cipher || key->decrypt.hmac;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libgcrypt-1.5.0/src/
H A Dgcrypt-module.h91 gcry_cipher_decrypt_t decrypt; member in struct:gcry_cipher_spec
168 gcry_pk_decrypt_t decrypt; member in struct:gcry_pk_spec
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libgcrypt-1.5.0/src/
H A Dgcrypt-module.h91 gcry_cipher_decrypt_t decrypt; member in struct:gcry_cipher_spec
168 gcry_pk_decrypt_t decrypt; member in struct:gcry_pk_spec
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/demos/maurice/
H A DMakefile28 @echo Doing the decrypt side...
45 @echo Doing the decrypt side...
55 @echo Doing the decrypt side...
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/evp/
H A Dpmeth_fn.c221 if (!ctx || !ctx->pmeth || !ctx->pmeth->decrypt) {
239 if (!ctx || !ctx->pmeth || !ctx->pmeth->decrypt) {
249 return ctx->pmeth->decrypt(ctx, out, outlen, in, inlen);
273 || !(ctx->pmeth->derive || ctx->pmeth->encrypt || ctx->pmeth->decrypt)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/evp/
H A Dpmeth_fn.c221 if (!ctx || !ctx->pmeth || !ctx->pmeth->decrypt) {
239 if (!ctx || !ctx->pmeth || !ctx->pmeth->decrypt) {
249 return ctx->pmeth->decrypt(ctx, out, outlen, in, inlen);
273 || !(ctx->pmeth->derive || ctx->pmeth->encrypt || ctx->pmeth->decrypt)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dfltinstr.tex7 of another stream. So, for example, it can uncompress or decrypt the data which are read
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/crypto/
H A Dfpu.c75 err = crypto_blkcipher_crt(desc.tfm)->decrypt(&desc, dst, src, nbytes);
133 inst->alg.cra_blkcipher.decrypt = crypto_fpu_decrypt;

Completed in 352 milliseconds

12345