Home
last modified time | relevance | path

Searched refs:keystr (Results 1 – 10 of 10) sorted by relevance

/freebsd-10-stable/crypto/openssl/crypto/rc4/
Drc4.c77 char *infile = NULL, *outfile = NULL, *keystr = NULL; in main() local
98 keystr = *(++argv); in main()
144 if (keystr == NULL) { /* get key */ in main()
151 keystr = buf; in main()
154 EVP_Digest((unsigned char *)keystr, strlen(keystr), md, NULL, EVP_md5(), in main()
156 OPENSSL_cleanse(keystr, strlen(keystr)); in main()
/freebsd-10-stable/contrib/ntp/libntp/
Dauthreadkeys.c145 u_char keystr[32]; /* Bug 2537 */ in authreadkeys() local
273 jlim = min(len, 2 * sizeof(keystr)); in authreadkeys()
280 keystr[j / 2] |= temp; in authreadkeys()
282 keystr[j / 2] = temp << 4; in authreadkeys()
296 memcpy(next->secbuf, keystr, len); in authreadkeys()
/freebsd-10-stable/cddl/contrib/opensolaris/lib/pyzfs/common/
Dioctl.c146 char *keystr = PyString_AsString(key); in dict2nvl() local
147 if (keystr == NULL) { in dict2nvl()
155 err = nvlist_add_nvlist(nvl, keystr, valnvl); in dict2nvl()
158 err = nvlist_add_boolean(nvl, keystr); in dict2nvl()
161 err = nvlist_add_string(nvl, keystr, valstr); in dict2nvl()
164 err = nvlist_add_uint64(nvl, keystr, valint); in dict2nvl()
167 err = nvlist_add_boolean_value(nvl, keystr, valbool); in dict2nvl()
/freebsd-10-stable/sys/compat/ndis/
Dsubr_ndis.c619 char *keystr = NULL; local
639 keystr = as.as_buf;
647 if (strcasecmp(oidp->oid_name, keystr) == 0) {
673 ndis_add_sysctl(sc, keystr, "(dynamic integer key)",
676 ndis_add_sysctl(sc, keystr, "(dynamic string key)",
721 char *keystr = NULL; local
736 keystr = as.as_buf;
750 if (strcasecmp(oidp->oid_name, keystr) == 0) {
759 ndis_add_sysctl(sc, keystr, "(dynamically set key)",
/freebsd-10-stable/contrib/ntp/util/
Dntp-keygen.c851 u_char keystr[MD5SIZE]; in gen_md5() local
884 RAND_bytes(keystr, 20); in gen_md5()
886 hexstr[2 * j] = hex[keystr[j] >> 4]; in gen_md5()
887 hexstr[2 * j + 1] = hex[keystr[j] & 0xf]; in gen_md5()
/freebsd-10-stable/contrib/ntp/ntpdc/
Dlayout.std248 offsetof(keystr) = 16
/freebsd-10-stable/contrib/ntp/include/
Dntp_request.h607 char keystr[128]; /* public key file name */ member
/freebsd-10-stable/usr.sbin/ntp/ntpdc/
Dnl.c493 (int) offsetof(struct conf_peer, keystr));
/freebsd-10-stable/contrib/ntp/
DCommitLog-4.1.01093 NUL on the keystr.
2077 * ntpd/ntp_peer.c (unpeer): Moved keystr cleanup inside ifdef PUBKEY
DCommitLog148640 bounds check keystr[] access, eliminate truncation warning