Searched refs:crypt (Results 1 - 25 of 45) sorted by relevance

12

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Dcrypt.t14 skip_all("crypt unimplemented");
21 # Can't assume too much about the string returned by crypt(),
32 skip ("VOS crypt ignores salt.", 1) if ($^O eq 'vos');
33 ok(substr(crypt("ab", "cd"), 2) ne substr(crypt("ab", "ce"), 2), "salt makes a difference");
38 eval {$b = crypt($a, "cd")};
39 like($@, qr/Wide character in crypt/, "wide characters ungood");
43 eval {$b = crypt($a, "cd")};
45 is($b, crypt("a\xFF", "cd"), "downgrade results agree");
/osnet-11/usr/src/lib/libwanbootutil/
H A Dreq.flg29 find_files "s.*" usr/src/common/net/wanboot/crypt
H A DMakefile.com36 CRYPTO_DIR = $(SRC)/common/net/wanboot/crypt
/osnet-11/usr/src/lib/crypt_modules/bsdbf/
H A Dbsdbf.c29 #include <crypt.h>
H A Dbcrypt.c156 /* Generates a salt for this version of crypt.
335 p = crypt(blubber, salt);
340 p = crypt(blubber, p);
/osnet-11/usr/src/lib/libzfs/common/
H A Dlibzfs_crypto.c525 int crypt, zfs_cmd_t *zc, zfs_crypto_zckey_t cmd)
533 size_t keylen = zio_crypt_table[crypt].ci_keylen;
822 uint64_t ret, crypt, keystatus; local
832 crypt = zfs_prop_get_int(zhp, ZFS_PROP_ENCRYPTION);
833 if (crypt == ZIO_CRYPT_OFF) {
866 zc.zc_crypto.zic_crypt = crypt;
868 ret = key_hdl_to_zc(zhp->zfs_hdl, zhp, keysource, crypt, &zc,
997 uint64_t crypt; local
1003 crypt = zfs_prop_get_int(zhp, ZFS_PROP_ENCRYPTION);
1004 if (crypt
524 key_hdl_to_zc(libzfs_handle_t *hdl, zfs_handle_t *zhp, char *keysource, int crypt, zfs_cmd_t *zc, zfs_crypto_zckey_t cmd) argument
1163 uint64_t crypt = ZIO_CRYPT_INHERIT, pcrypt = ZIO_CRYPT_DEFAULT; local
1458 uint64_t crypt, pcrypt; local
1553 int crypt = zfs_prop_get_int(zhp, ZFS_PROP_ENCRYPTION); local
[all...]
/osnet-11/usr/src/lib/libcrypt/common/
H A Dllib-lcrypt38 /* crypt.c */
41 char *crypt(const char *pw, const char *salt);
H A Ddes_crypt.c34 #include <crypt.h>
/osnet-11/usr/src/lib/crypt_modules/sha256/
H A Dtest.c27 #include <crypt.h>
/osnet-11/usr/src/lib/pam_modules/rhosts_auth/
H A Drhosts_auth.c38 #include <crypt.h>
/osnet-11/usr/src/lib/libwanboot/
H A DMakefile.com63 CPPFLAGS = -I$(SRC)/common/net/wanboot/crypt $(CPPFLAGS.master)
/osnet-11/usr/src/lib/pam_modules/dial_auth/
H A Ddial_auth.c28 #include <crypt.h>
160 if (strcmp(crypt(password, p2), p2) != 0) {
/osnet-11/usr/src/lib/passwdutil/
H A Dpasswdutil.h34 #include <crypt.h> /* CRYPT_MAXCIPHERTEXTLEN max crypt length */
H A Dfiles_attr.c441 crypt_passwd = crypt(passwd, s);
708 hash = crypt(p->data.val_s, salt);
1220 char *crypt; local
1231 crypt = strtok_r(NULL, ":", &last);
1232 if (crypt == NULL ||
1233 *crypt == '\n') {
1236 (void) fprintf(dst, "%s:", crypt);
1237 debug("\t%d = %s:", i+1, crypt);
H A Dutils.c32 #include <crypt.h>
/osnet-11/usr/src/lib/libsldap/common/
H A Dns_crypt.c44 #include <crypt.h>
136 (void) strncpy(buf, (char *)crypt(buf, &buf[8]), 13);
/osnet-11/usr/src/lib/pam_modules/passwd_auth/
H A Dpasswd_auth.c32 #include <crypt.h>
251 * crypt strings, hence the comma will always be at position 14.
262 if (strcmp(crypt(password, rep_passwd), rep_passwd) != 0) {
/osnet-11/usr/src/lib/crypt_modules/bsdmd5/
H A Dbsdmd5.c35 * $FreeBSD: crypt.c,v 1.5 1996/10/14 08:34:02 phk Exp $
49 #include <crypt.h>
/osnet-11/usr/src/lib/pam_modules/unix_session/
H A Dunix_session.c53 #include <crypt.h>
/osnet-11/usr/src/lib/pam_modules/unix_auth/
H A Dunix_auth.c31 #include <crypt.h>
303 * crypt strings, hence the comma will always be at position 14.
345 if ((crypt_passwd = crypt(passwd, rep_passwd)) == NULL) {
/osnet-11/usr/src/lib/libc/port/gen/
H A Dcrypt.c27 #pragma weak _crypt = crypt
50 #include <crypt.h>
59 #define CRYPT_CONFFILE "/etc/security/crypt.conf"
81 * Since it also has to fit in crypt.conf it is CRYPT_CONFLINELENGTH
84 * CRYPT_MAXCIPHERTEXTLEN is defined in crypt.h and is smaller than
126 * crypt - string encoding function
131 * If the first character of salt is "$" then we use crypt.conf(4) to
144 crypt(const char *plaintext, const char *salt) function
169 * crypt.conf(4) to find out what shared object to use.
170 * If we can't find it in crypt
[all...]
/osnet-11/usr/src/lib/pam_modules/zfs_key/
H A Dzfs_key.c267 uint64_t crypt; local
280 encryption, &crypt);
281 if (crypt != ZIO_CRYPT_OFF) {
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Safe/t/
H A Dsafeops.t188 crypt crypt 'foo','bar'
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/t/
H A DFunctions.t78 chomp, chop, chr, crypt, hex, index, lc, lcfirst, length,
/osnet-11/usr/src/lib/libsoftcrypto/
H A DMakefile.com106 UCRYPTO_COMMON_OBJS = crypt.o mechstr.o

Completed in 124 milliseconds

12