Searched refs:rawkey (Results 1 - 10 of 10) sorted by relevance

/freebsd-11-stable/sys/opencrypto/
H A Dcast.h19 void cast_setkey(cast_key * key, u_int8_t * rawkey, int keybytes);
H A Dcast.c132 void cast_setkey(cast_key* key, u_int8_t* rawkey, int keybytes) argument
143 if ((i*4+0) < keybytes) x[i] = (u_int32_t)rawkey[i*4+0] << 24;
144 if ((i*4+1) < keybytes) x[i] |= (u_int32_t)rawkey[i*4+1] << 16;
145 if ((i*4+2) < keybytes) x[i] |= (u_int32_t)rawkey[i*4+2] << 8;
146 if ((i*4+3) < keybytes) x[i] |= (u_int32_t)rawkey[i*4+3];
/freebsd-11-stable/crypto/openssl/crypto/seed/
H A Dseed.h119 void private_SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH],
122 void SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH],
H A Dseed.c552 void SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH], argument
557 private_SEED_set_key(rawkey, ks);
560 void private_SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH], argument
567 char2word(rawkey, x1);
568 char2word(rawkey + 4, x2);
569 char2word(rawkey + 8, x3);
570 char2word(rawkey + 12, x4);
/freebsd-11-stable/crypto/openssh/
H A Dhostfile.h91 const char *rawkey; /* Text of key and any comment following it */ member in struct:hostkey_foreach_line
H A Dhostfile.c778 lineinfo.rawkey = cp = cp2;
811 l = strcspn(lineinfo.rawkey, " \t");
813 lineinfo.rawkey[l] == '\0')
815 memcpy(ktype, lineinfo.rawkey, l);
H A Dssh-keygen.c1114 fprintf(ctx->out, "%s %s\n", hashed, l->rawkey);
/freebsd-11-stable/sys/geom/eli/
H A Dg_eli_key_cache.c318 g_eli_key_drop(struct g_eli_softc *sc, uint8_t *rawkey) argument
320 struct g_eli_key *key = (struct g_eli_key *)rawkey;
H A Dg_eli.h722 void g_eli_key_drop(struct g_eli_softc *sc, uint8_t *rawkey);
/freebsd-11-stable/crypto/openssh/regress/unittests/hostkeys/
H A Dtest_iterate.c127 if (expected->l.rawkey != NULL)
128 ASSERT_STRING_EQ(l->rawkey, expected->l.rawkey);

Completed in 234 milliseconds