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

1 2 3 4

  /external/wpa_supplicant_8/src/crypto/
des_i.h 18 void des_block_encrypt(const u8 *plain, const u32 *ek, u8 *crypt);
19 void des_block_decrypt(const u8 *crypt, const u32 *dk, u8 *plain);
22 void des3_encrypt(const u8 *plain, const struct des3_key_s *key, u8 *crypt);
23 void des3_decrypt(const u8 *crypt, const struct des3_key_s *key, u8 *plain);
aes.h 15 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt);
18 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
crypto_internal-cipher.c 110 u8 *crypt, size_t len)
116 if (plain != crypt)
117 os_memcpy(crypt, plain, len);
119 ctx->u.rc4.used_bytes, crypt, len);
131 os_memcpy(crypt, ctx->u.aes.cbc,
134 crypt += ctx->u.aes.block_size;
146 os_memcpy(crypt, ctx->u.des3.cbc, 8);
148 crypt += 8;
160 os_memcpy(crypt, ctx->u.des.cbc, 8);
162 crypt += 8
    [all...]
crypto.h 117 * @crypt: Buffer for the encrypted data (16 bytes)
119 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt);
138 * @crypt: Encrypted data (16 bytes)
141 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
233 * @crypt: Resulting ciphertext
242 const u8 *plain, u8 *crypt, size_t len);
247 * @crypt: Ciphertext to decrypt
257 const u8 *crypt, u8 *plain, size_t len);
395 * @crypt: Encrypted signature data (using the private key)
402 struct crypto_public_key *key, const u8 *crypt, size_t crypt_len
    [all...]
crypto_nss.c 144 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt)
160 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain)
192 u8 *crypt, size_t len)
198 int crypto_cipher_decrypt(struct crypto_cipher *ctx, const u8 *crypt,
crypto_gnutls.c 110 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt)
113 gcry_cipher_encrypt(hd, crypt, 16, plain, 16);
140 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain)
143 gcry_cipher_decrypt(hd, plain, 16, crypt, 16);
275 u8 *crypt, size_t len)
277 if (gcry_cipher_encrypt(ctx->enc, crypt, len, plain, len) !=
284 int crypto_cipher_decrypt(struct crypto_cipher *ctx, const u8 *crypt,
287 if (gcry_cipher_decrypt(ctx->dec, plain, len, crypt, len) !=
crypto_internal-rsa.c 103 const u8 *crypt, size_t crypt_len,
107 crypt, crypt_len, plain, plain_len);
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
aes.h 19 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt);
22 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
crypto.h 103 * @crypt: Buffer for the encrypted data (16 bytes)
105 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt);
124 * @crypt: Encrypted data (16 bytes)
127 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
218 * @crypt: Resulting ciphertext
227 const u8 *plain, u8 *crypt, size_t len);
232 * @crypt: Ciphertext to decrypt
242 const u8 *crypt, u8 *plain, size_t len);
378 * @crypt: Encrypted signature data (using the private key)
385 struct crypto_public_key *key, const u8 *crypt, size_t crypt_len
    [all...]
crypto_gnutls.c 122 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt)
125 gcry_cipher_encrypt(hd, crypt, 16, plain, 16);
152 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain)
155 gcry_cipher_decrypt(hd, plain, 16, crypt, 16);
287 u8 *crypt, size_t len)
289 if (gcry_cipher_encrypt(ctx->enc, crypt, len, plain, len) !=
296 int crypto_cipher_decrypt(struct crypto_cipher *ctx, const u8 *crypt,
299 if (gcry_cipher_decrypt(ctx->dec, plain, len, crypt, len) !=
crypto_openssl.c 174 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt)
176 AES_encrypt(plain, crypt, ctx);
200 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain)
202 AES_decrypt(crypt, plain, ctx);
335 u8 *crypt, size_t len)
338 if (!EVP_EncryptUpdate(&ctx->enc, crypt, &outl, plain, len))
344 int crypto_cipher_decrypt(struct crypto_cipher *ctx, const u8 *crypt,
349 if (!EVP_DecryptUpdate(&ctx->dec, plain, &outl, crypt, len))
crypto_libtomcrypt.c 104 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt)
107 aes_ecb_encrypt(plain, crypt, skey);
133 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain)
136 aes_ecb_encrypt(plain, (u8 *) crypt, skey);
358 u8 *crypt, size_t len)
363 if (plain != crypt)
364 os_memcpy(crypt, plain, len);
366 ctx->u.rc4.used_bytes, crypt, len);
371 res = cbc_encrypt(plain, crypt, len, &ctx->u.cbc);
381 int crypto_cipher_decrypt(struct crypto_cipher *ctx, const u8 *crypt,
    [all...]
  /external/openssl/crypto/des/
DES.pm 12 crypt
  /external/chromium/chrome/browser/importer/
firefox_importer_unittest_utils.h 42 string16 Decrypt(const std::string& crypt);
80 string16 FFUnitTestDecryptorProxy::Decrypt(const std::string& crypt) {
81 return decryptor_.Decrypt(crypt);
nss_decryptor_null.h 27 string16 Decrypt(const std::string& crypt) const { return string16(); }
nss_decryptor_system_nss.h 33 string16 Decrypt(const std::string& crypt) const;
  /external/openssh/openbsd-compat/
xcrypt.c 32 # include <crypt.h>
69 crypted = crypt(password, salt);
74 crypted = crypt(password, salt);
78 crypted = crypt(password, salt);
  /external/ppp/pppd/
pppcrypt.h 37 #include <crypt.h>
  /external/dropbear/libtomcrypt/
Android.mk 43 src/misc/base64/base64_encode.c src/misc/burn_stack.c src/misc/crypt/crypt.c \
44 src/misc/crypt/crypt_argchk.c src/misc/crypt/crypt_cipher_descriptor.c \
45 src/misc/crypt/crypt_cipher_is_valid.c src/misc/crypt/crypt_find_cipher.c \
46 src/misc/crypt/crypt_find_cipher_any.c src/misc/crypt/crypt_find_cipher_id.c \
47 src/misc/crypt/crypt_find_hash.c src/misc/crypt/crypt_find_hash_any.c
    [all...]
  /external/wpa_supplicant_8/src/tls/
pkcs1.h 19 const u8 *crypt, size_t crypt_len,
  /libcore/support/src/test/java/tests/security/
CipherHelper.java 57 byte[] encrypted = crypt(cipher, plainData.getBytes());
65 byte[] decrypted = crypt(cipher, encrypted);
73 public byte[] crypt(Cipher cipher, byte[] input) { method in class:CipherHelper
  /external/dropbear/
svr-authpasswd.c 42 char * passwdcrypt = NULL; /* the crypt from /etc/passwd or /etc/shadow */
43 char * testcrypt = NULL; /* crypt generated from the user's password sent */
59 /* debugging crypt for non-root testing with shadows */
84 testcrypt = crypt((char*)password, passwdcrypt);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
crypt.h 2 * UFC-crypt: ultra fast crypt(3) implementation
21 * @(#)crypt.h 1.5 12/20/96
33 extern char *crypt (__const char *__key, __const char *__salt)
75 #endif /* crypt.h */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
crypt.h 2 * UFC-crypt: ultra fast crypt(3) implementation
21 * @(#)crypt.h 1.5 12/20/96
33 extern char *crypt (__const char *__key, __const char *__salt)
75 #endif /* crypt.h */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
crypt.h 2 * UFC-crypt: ultra fast crypt(3) implementation
21 * @(#)crypt.h 1.5 12/20/96
33 extern char *crypt (__const char *__key, __const char *__salt)
75 #endif /* crypt.h */

Completed in 211 milliseconds

1 2 3 4