Searched refs:rawKey (Results 1 – 5 of 5) sorted by relevance
/freebsd/crypto/openssl/crypto/camellia/ |
H A D | camellia.c | 286 int Camellia_Ekeygen(int keyBitLength, const u8 *rawKey, KEY_TABLE_TYPE k) in Camellia_Ekeygen() argument 290 k[0] = s0 = GETU32(rawKey); in Camellia_Ekeygen() 291 k[1] = s1 = GETU32(rawKey + 4); in Camellia_Ekeygen() 292 k[2] = s2 = GETU32(rawKey + 8); in Camellia_Ekeygen() 293 k[3] = s3 = GETU32(rawKey + 12); in Camellia_Ekeygen() 296 k[8] = s0 = GETU32(rawKey + 16); in Camellia_Ekeygen() 297 k[9] = s1 = GETU32(rawKey + 20); in Camellia_Ekeygen() 302 k[10] = s2 = GETU32(rawKey + 24); in Camellia_Ekeygen() 303 k[11] = s3 = GETU32(rawKey + 28); in Camellia_Ekeygen()
|
H A D | cmll_local.h | 31 int Camellia_Ekeygen(int keyBitLength, const u8 *rawKey,
|
/freebsd/sys/crypto/camellia/ |
H A D | camellia.h | 45 const unsigned char *rawKey,
|
H A D | camellia.c | 1247 const unsigned char *rawKey, in Camellia_Ekeygen() argument 1255 camellia_setup128(rawKey, subkey); in Camellia_Ekeygen() 1258 camellia_setup192(rawKey, subkey); in Camellia_Ekeygen() 1261 camellia_setup256(rawKey, subkey); in Camellia_Ekeygen()
|
/freebsd/contrib/sqlite3/ |
H A D | sqlite3.c | 207697 int rawKey = 1; 207710 rawKey = memchr(zKey, '\\', nKey)==0; 207734 if( jsonLabelCompare(zKey, nKey, rawKey, zLabel, sz, rawLabel) ){ 207759 jsonBlobAppendNode(&ix, rawKey?JSONB_TEXTRAW:JSONB_TEXT5, nKey, 0);
|