Searched refs:keystr (Results 1 - 8 of 8) sorted by relevance

/freebsd-12-stable/contrib/ntp/libntp/
H A Dauthreadkeys.c145 u_char keystr[32]; /* Bug 2537 */ local
275 jlim = min(len, 2 * sizeof(keystr));
282 keystr[j / 2] |= temp;
284 keystr[j / 2] = temp << 4;
298 memcpy(next->secbuf, keystr, len);
/freebsd-12-stable/contrib/libucl/python/src/
H A Duclmodule.c163 char *keystr = NULL; local
172 keystr = PyBytes_AsString(keyascii);
177 keystr = PyString_AsString(key);
185 ucl_object_insert_key (top, elm, keystr, 0, true);
/freebsd-12-stable/cddl/contrib/opensolaris/lib/pyzfs/common/
H A Dioctl.c146 char *keystr = PyString_AsString(key); local
147 if (keystr == NULL) {
155 err = nvlist_add_nvlist(nvl, keystr, valnvl);
158 err = nvlist_add_boolean(nvl, keystr);
161 err = nvlist_add_string(nvl, keystr, valstr);
164 err = nvlist_add_uint64(nvl, keystr, valint);
167 err = nvlist_add_boolean_value(nvl, keystr, valbool);
/freebsd-12-stable/usr.sbin/bhyve/
H A Drfb.c755 unsigned char keystr[PASSWD_LENGTH]; local
805 strncpy(keystr, rc->password, PASSWD_LENGTH);
809 * Here we flip each byte of the keystr.
812 keystr[i] = (keystr[i] & 0xF0) >> 4
813 | (keystr[i] & 0x0F) << 4;
814 keystr[i] = (keystr[i] & 0xCC) >> 2
815 | (keystr[i] & 0x33) << 2;
816 keystr[
[all...]
/freebsd-12-stable/sys/compat/ndis/
H A Dsubr_ndis.c622 char *keystr = NULL; local
645 keystr = as.as_buf;
653 if (strcasecmp(oidp->oid_name, keystr) == 0) {
679 ndis_add_sysctl(sc, keystr, "(dynamic integer key)",
682 ndis_add_sysctl(sc, keystr, "(dynamic string key)",
727 char *keystr = NULL; local
742 keystr = as.as_buf;
756 if (strcasecmp(oidp->oid_name, keystr) == 0) {
765 ndis_add_sysctl(sc, keystr, "(dynamically set key)",
/freebsd-12-stable/contrib/ntp/util/
H A Dntp-keygen.c851 u_char keystr[MD5SIZE]; local
884 RAND_bytes(keystr, 20);
886 hexstr[2 * j] = hex[keystr[j] >> 4];
887 hexstr[2 * j + 1] = hex[keystr[j] & 0xf];
/freebsd-12-stable/contrib/ntp/include/
H A Dntp_request.h607 char keystr[128]; /* public key file name */ member in struct:conf_peer
/freebsd-12-stable/usr.sbin/ntp/ntpdc/
H A Dnl.c492 printf("offsetof(keystr) = %d\n",
493 (int) offsetof(struct conf_peer, keystr));

Completed in 152 milliseconds