HomeSort by: relevance | last modified time | path
    Searched defs:key (Results 1 - 25 of 762) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/external/isc/libsodium/dist/test/default/
auth3.c 6 static unsigned char key[32] = { variable in typeref:typename:unsigned char[32]
28 printf("%d\n", crypto_auth_hmacsha256_verify(a, c, sizeof c, key));
auth3.c 6 static unsigned char key[32] = { variable in typeref:typename:unsigned char[32]
28 printf("%d\n", crypto_auth_hmacsha256_verify(a, c, sizeof c, key));
auth2.c 6 static unsigned char key[32] = { variable in typeref:typename:unsigned char[32]
27 crypto_auth_hmacsha256(a, c, sizeof c, key);
auth5.c 5 static unsigned char key[32]; variable in typeref:typename:unsigned char[32]
15 crypto_auth_keygen(key);
17 crypto_auth(a, c, clen, key);
18 if (crypto_auth_verify(a, c, clen, key) != 0) {
24 if (crypto_auth_verify(a, c, clen, key) == 0) {
29 if (crypto_auth_verify(a, c, clen, key) == 0) {
auth6.c 6 static unsigned char key[32] = "Jefe"; variable in typeref:typename:unsigned char[32]
16 crypto_auth_hmacsha512(a, c, sizeof c - 1U, key);
auth7.c 5 static unsigned char key[32]; variable in typeref:typename:unsigned char[32]
15 crypto_auth_keygen(key);
17 crypto_auth_hmacsha512(a, c, clen, key);
18 if (crypto_auth_hmacsha512_verify(a, c, clen, key) != 0) {
24 if (crypto_auth_hmacsha512_verify(a, c, clen, key) == 0) {
29 if (crypto_auth_hmacsha512_verify(a, c, clen, key) == 0) {
onetimeauth7.c 5 static unsigned char key[32]; variable in typeref:typename:unsigned char[32]
15 crypto_onetimeauth_keygen(key);
17 crypto_onetimeauth(a, c, clen, key);
18 if (crypto_onetimeauth_verify(a, c, clen, key) != 0) {
24 if (crypto_onetimeauth_verify(a, c, clen, key) == 0) {
29 if (crypto_onetimeauth_verify(a, c, clen, key) == 0) {
auth2.c 6 static unsigned char key[32] = { variable in typeref:typename:unsigned char[32]
27 crypto_auth_hmacsha256(a, c, sizeof c, key);
auth5.c 5 static unsigned char key[32]; variable in typeref:typename:unsigned char[32]
15 crypto_auth_keygen(key);
17 crypto_auth(a, c, clen, key);
18 if (crypto_auth_verify(a, c, clen, key) != 0) {
24 if (crypto_auth_verify(a, c, clen, key) == 0) {
29 if (crypto_auth_verify(a, c, clen, key) == 0) {
auth6.c 6 static unsigned char key[32] = "Jefe"; variable in typeref:typename:unsigned char[32]
16 crypto_auth_hmacsha512(a, c, sizeof c - 1U, key);
auth7.c 5 static unsigned char key[32]; variable in typeref:typename:unsigned char[32]
15 crypto_auth_keygen(key);
17 crypto_auth_hmacsha512(a, c, clen, key);
18 if (crypto_auth_hmacsha512_verify(a, c, clen, key) != 0) {
24 if (crypto_auth_hmacsha512_verify(a, c, clen, key) == 0) {
29 if (crypto_auth_hmacsha512_verify(a, c, clen, key) == 0) {
onetimeauth7.c 5 static unsigned char key[32]; variable in typeref:typename:unsigned char[32]
15 crypto_onetimeauth_keygen(key);
17 crypto_onetimeauth(a, c, clen, key);
18 if (crypto_onetimeauth_verify(a, c, clen, key) != 0) {
24 if (crypto_onetimeauth_verify(a, c, clen, key) == 0) {
29 if (crypto_onetimeauth_verify(a, c, clen, key) == 0) {
auth.c 6 static unsigned char key[32] = "Jefe"; variable in typeref:typename:unsigned char[32]
27 crypto_auth(a, c, sizeof c - 1U, key);
35 crypto_auth_hmacsha512_init(&st, key, sizeof key);
  /src/bin/pax/
getoldopt.c 39 static char *key; /* Points to next keyletter */ local in function:getoldopt
46 if (key == NULL) { /* First time */
48 key = argv[1];
49 if (*key == '-')
57 c = *key++;
59 key--;
getoldopt.c 39 static char *key; /* Points to next keyletter */ local in function:getoldopt
46 if (key == NULL) { /* First time */
48 key = argv[1];
49 if (*key == '-')
57 c = *key++;
59 key--;
  /src/lib/libwrap/
update.c 46 int key; local in function:request_fill
49 while ((key = va_arg(ap, int)) > 0) {
50 switch (key) {
52 tcpd_warn("request_fill: invalid key: %d", key);
update.c 46 int key; local in function:request_fill
49 while ((key = va_arg(ap, int)) > 0) {
50 switch (key) {
52 tcpd_warn("request_fill: invalid key: %d", key);
  /src/libexec/makekey/
makekey.c 56 char *r, key[9], salt[3]; local in function:main
58 get(key, sizeof(key) - 1);
60 len = strlen(r = crypt(key, salt));
makekey.c 56 char *r, key[9], salt[3]; local in function:main
58 get(key, sizeof(key) - 1);
60 len = strlen(r = crypt(key, salt));
  /src/lib/libc/db/hash/
hash_func.c 62 * Assume that we've already split the bucket to which this key hashes,
74 const uint8_t *key;
78 for (key = keyarg, h = 0; len--;)
79 h = h * PRIME1 ^ (*key++ - ' ');
92 const uint8_t *e, *key;
96 key = keyarg;
97 e = key + len;
98 for (h = 0; key != e;) {
99 c = *key++;
100 if (!c && key > e
166 const uint8_t *key; local in function:hash4
    [all...]
  /src/lib/libc/db/recno/
rec_close.c 114 DBT data, key; local in function:__rec_sync
144 key.size = sizeof(recno_t);
145 key.data = &trec;
153 status = (dbp->seq)(dbp, &key, &data, R_FIRST);
158 status = (dbp->seq)(dbp, &key, &data, R_NEXT);
164 status = (dbp->seq)(dbp, &key, &data, R_FIRST);
171 status = (dbp->seq)(dbp, &key, &data, R_NEXT);
  /src/sys/arch/prep/prep/
ibm_machdep.c 49 char key[20]; local in function:pci_intr_fixup_ibm_6015
63 snprintf(key, sizeof(key), "pin-%c", 'A' + j);
64 prop_dictionary_set(sub, key, intr_num);
74 snprintf(key, sizeof(key), "devfunc-%d", i);
76 snprintf(key, sizeof(key), "pin-%c", 'A' + j);
77 prop_dictionary_set(sub, key, intr_num);
79 prop_dictionary_set(dict, key, sub)
    [all...]
  /src/sys/dev/scsipi/
atapi_base.c 61 int key, error; local in function:atapi_interpret_sense
78 * more than the sense key
83 key = (xs->sense.atapi_sense & 0xf0) >> 4;
84 switch (key) {
150 if (!key) {
  /src/sys/external/bsd/drm/dist/bsd-core/
drm_hashtab.h 43 unsigned long key; member in struct:drm_hash_item
58 extern int drm_ht_find_item(struct drm_open_hash *ht, unsigned long key, struct drm_hash_item **item);
60 extern void drm_ht_verbose_list(struct drm_open_hash *ht, unsigned long key);
61 extern int drm_ht_remove_key(struct drm_open_hash *ht, unsigned long key);
  /src/sys/modules/luapmf/
luapmf.c 57 const char *key, *value; local in function:set_platform
59 key = lua_tostring(L, -2);
61 if (key != NULL && value != NULL)
62 pmf_set_platform(key, value);
69 const char *key, *value; local in function:get_platform
71 key = lua_tostring(L, -1);
72 if (key != NULL) {
73 value = pmf_get_platform(key);

Completed in 31 milliseconds

1 2 3 4 5 6 7 8 91011>>