Home
last modified time | relevance | path

Searched refs:cypher (Results 1 – 25 of 26) sorted by relevance

12

/third_party/boost/libs/convert/test/
Dencryption.cpp18 size_t const cypher = 'A' - '1'; in my_cypher() local
23 (*it < 'A') ? (*it += cypher) : (*it -= cypher); in my_cypher()
/third_party/ffmpeg/tools/
Dcrypto_bench.c315 #define DEFINE_GCRYPT_CYPHER_WRAPPER(suffix, cypher, mode, sz) \ in DEFINE_GCRYPT_WRAPPER() argument
321 gcry_cipher_open(&suffix, GCRY_CIPHER_ ## cypher, GCRY_CIPHER_MODE_ ## mode, 0); \ in DEFINE_GCRYPT_WRAPPER()
378 #define DEFINE_MBEDCRYPTO_CYPHER_WRAPPER(suffix, cypher, algo) \ argument
382 mbedtls_ ## cypher ## _context cypher; \
384 mbedtls_ ## cypher ## _init(&cypher); \
385 mbedtls_ ## cypher ## _setkey_enc(&cypher, hardcoded_key, 128); \
387 mbedtls_ ## cypher ## _crypt_ecb(&cypher, MBEDTLS_ ## algo ## _ENCRYPT, \
389 mbedtls_ ## cypher ## _free(&cypher); \
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
Dms_funcs.c497 const u8 *block, u8 *cypher) in nt_password_hash_encrypted_with_block() argument
499 if (des_encrypt(password_hash, block, cypher) < 0 || in nt_password_hash_encrypted_with_block()
500 des_encrypt(password_hash + 8, block + 7, cypher + 8) < 0) in nt_password_hash_encrypted_with_block()
Dcrypto_none.c21 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) in des_encrypt() argument
Ddes-internal.c399 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) in des_encrypt() argument
419 WPA_PUT_BE32(cypher, work[0]); in des_encrypt()
420 WPA_PUT_BE32(cypher + 4, work[1]); in des_encrypt()
Dms_funcs.h54 const u8 *block, u8 *cypher);
Dcrypto_nettle.c29 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) in des_encrypt() argument
45 nettle_des_encrypt(&ctx, DES_BLOCK_SIZE, cypher, clear); in des_encrypt()
Dcrypto_gnutls.c48 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) in des_encrypt() argument
65 gcry_cipher_encrypt(hd, cypher, 8, clear, 8); in des_encrypt()
Dcrypto_libtomcrypt.c38 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) in des_encrypt() argument
54 des_ecb_encrypt(clear, cypher, &skey); in des_encrypt()
Dcrypto_linux.c607 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) in des_encrypt() argument
655 ret = read(skcipher->t, cypher, 8); in des_encrypt()
Dcrypto.h111 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher);
Dcrypto_wolfssl.c285 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) in des_encrypt() argument
301 wc_Des_EcbEncrypt(&des, cypher, clear, DES_BLOCK_SIZE); in des_encrypt()
Dcrypto_openssl.c255 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) in des_encrypt() argument
276 EVP_EncryptUpdate(ctx, cypher, &plen, clear, 8) == 1 && in des_encrypt()
277 EVP_EncryptFinal_ex(ctx, &cypher[plen], &plen) == 1) in des_encrypt()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
Dms_funcs.c497 const u8 *block, u8 *cypher) in nt_password_hash_encrypted_with_block() argument
499 if (des_encrypt(password_hash, block, cypher) < 0 || in nt_password_hash_encrypted_with_block()
500 des_encrypt(password_hash + 8, block + 7, cypher + 8) < 0) in nt_password_hash_encrypted_with_block()
Dcrypto_none.c21 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) in des_encrypt() argument
Ddes-internal.c399 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) in des_encrypt() argument
419 WPA_PUT_BE32(cypher, work[0]); in des_encrypt()
420 WPA_PUT_BE32(cypher + 4, work[1]); in des_encrypt()
Dms_funcs.h54 const u8 *block, u8 *cypher);
Dcrypto_nettle.c29 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) in des_encrypt() argument
45 nettle_des_encrypt(&ctx, DES_BLOCK_SIZE, cypher, clear); in des_encrypt()
Dcrypto_gnutls.c48 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) in des_encrypt() argument
65 gcry_cipher_encrypt(hd, cypher, 8, clear, 8); in des_encrypt()
Dcrypto_libtomcrypt.c38 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) in des_encrypt() argument
54 des_ecb_encrypt(clear, cypher, &skey); in des_encrypt()
Dcrypto.h111 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher);
Dcrypto_linux.c607 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) in des_encrypt() argument
655 ret = read(skcipher->t, cypher, 8); in des_encrypt()
Dcrypto_wolfssl.c285 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) in des_encrypt() argument
301 wc_Des_EcbEncrypt(&des, cypher, clear, DES_BLOCK_SIZE); in des_encrypt()
Dcrypto_openssl.c195 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) in des_encrypt() argument
211 DES_ecb_encrypt((DES_cblock *) clear, (DES_cblock *) cypher, &ks, in des_encrypt()
/third_party/python/Doc/library/
Dcodecs.rst1400 | rot_13 | rot13 | Return the Caesar-cypher |

12