| /src/external/bsd/openldap/dist/include/ac/ |
| crypt.h | 1 /* $NetBSD: crypt.h,v 1.4 2025/09/05 21:16:20 christos Exp $ */ 3 /* Generic crypt.h */ 24 /* crypt() may be defined in a separate include file */ 26 # include <crypt.h> 28 extern char *(crypt)();
|
| /src/crypto/external/bsd/netpgp/dist/src/lib/ |
| symmetric.c | 94 std_set_iv(pgp_crypt_t *crypt, const uint8_t *iv) 96 (void) memcpy(crypt->iv, iv, crypt->blocksize); 97 crypt->num = 0; 101 std_set_key(pgp_crypt_t *crypt, const uint8_t *key) 103 (void) memcpy(crypt->key, key, crypt->keysize); 121 std_finish(pgp_crypt_t *crypt) 123 if (crypt->encrypt_key) { 124 free(crypt->encrypt_key) [all...] |
| /src/external/bsd/wpa/dist/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 int aes_encrypt(void *ctx, const u8 *plain, u8 *crypt); 18 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
|
| crypto_internal-cipher.c | 104 u8 *crypt, size_t len) 110 if (plain != crypt) 111 os_memcpy(crypt, plain, len); 113 ctx->u.rc4.used_bytes, crypt, len); 125 os_memcpy(crypt, ctx->u.aes.cbc, AES_BLOCK_SIZE); 127 crypt += AES_BLOCK_SIZE; 139 os_memcpy(crypt, ctx->u.des3.cbc, 8); 141 crypt += 8; 153 os_memcpy(crypt, ctx->u.des.cbc, 8); 155 crypt += 8 [all...] |
| aes_wrap.h | 56 u8 *crypt, u8 *tag); 59 const u8 *crypt, size_t crypt_len, 67 const u8 *aad, size_t aad_len, u8 *crypt, u8 *auth); 69 size_t M, const u8 *crypt, size_t crypt_len,
|
| /src/lib/libcrypt/ |
| Makefile | 13 LIB= crypt 15 SRCS= crypt.c md5crypt.c bcrypt.c crypt-sha1.c util.c pw_gensalt.c 27 SRCS+= crypt-argon2.c 37 MAN= crypt.3 pw_gensalt.3 38 MLINKS= crypt.3 encrypt.3 crypt.3 setkey.3 42 COPTS.crypt.c+= ${CC_WNO_STRINGOP_OVERFLOW}
|
| /src/crypto/external/bsd/heimdal/dist/lib/roken/ |
| verify.c | 43 #include <crypt.h> 57 if(strcmp(crypt(password, pw->pw_passwd), pw->pw_passwd) == 0)
|
| /src/crypto/external/bsd/openssh/bin/ |
| Makefile.inc | 7 crypt ${NETBSDSRCDIR}/lib/libcrypt \
|
| /src/external/bsd/unbound/dist/dnscrypt/testdata/ |
| gencert.sh | 17 dnscrypt-wrapper --gen-crypt-keypair \ 18 --crypt-secretkey-file="${i}.key" \ 33 --crypt-secretkey-file="${i}.key" \
|
| /src/lib/libpam/modules/pam_group/ |
| Makefile | 15 crypt ${.CURDIR}/../../../libcrypt
|
| /src/lib/libpam/modules/pam_unix/ |
| Makefile | 49 crypt ${.CURDIR}/../../../libcrypt
|
| /src/lib/libpam/modules/pam_krb5/ |
| Makefile | 37 crypt ${.CURDIR}/../../../libcrypt \
|
| /src/lib/libpam/modules/pam_ksu/ |
| Makefile | 37 crypt ${.CURDIR}/../../../libcrypt \
|
| /src/lib/libpam/modules/pam_ssh/ |
| Makefile | 21 crypt ${.CURDIR}/../../../libcrypt \
|
| /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/ |
| md5crypt_test.c | 58 c = crypt (t->str, t->salt);
|
| /src/crypto/external/bsd/heimdal/lib/libipc/ |
| Makefile | 13 crypt ${NETBSDSRCDIR}/lib/libcrypt
|
| /src/external/bsd/wpa/dist/src/tls/ |
| pkcs1.h | 22 const u8 *crypt, size_t crypt_len,
|
| /src/crypto/external/bsd/netpgp/dist/tests/ |
| Makefile.am | 13 crypt.at \
|
| /src/common/dist/zlib/contrib/minizip/ |
| Makefile | 10 unzip.o: unzip.c unzip.h crypt.h 11 zip.o: zip.c zip.h crypt.h skipset.h ints.h
|
| /src/lib/libpam/modules/pam_afslog/ |
| Makefile | 13 crypt ${.CURDIR}/../../../libcrypt \
|
| /src/libexec/makekey/ |
| makekey.c | 60 len = strlen(r = crypt(key, salt));
|
| /src/tests/lib/libcrypt/ |
| t_crypt.c | 43 * Id: crypt.c,v 1.15 1994/09/13 04:58:49 davidb Exp 45 * This is an original implementation of the DES and the crypt(3) interfaces 57 * posted to the sci.crypt newsgroup by the author and is available for FTP. 100 /* "old"-style, "reasonable" invalid salts, UFC-crypt behavior expected */ 138 atf_tc_set_md_var(tc, "descr", "crypt(3) salt consistency checks"); 144 char *hash = crypt(tests[i].pw, tests[i].hash);
|
| /src/crypto/external/bsd/heimdal/lib/libwind/ |
| Makefile | 13 crypt ${NETBSDSRCDIR}/lib/libcrypt \
|
| /src/external/mit/xorg/lib/libXdmGreet/ |
| Makefile | 35 crypt ${.CURDIR}/../../../../../lib/libcrypt \
|