Searched refs:inbyte (Results 1 – 6 of 6) sorted by relevance
/freebsd/crypto/openssl/providers/implementations/rands/ |
H A D | drbg_hash.c | 61 * inbyte - An optional leading byte (ignore if equal to INBYTE_IGNORE) 68 const unsigned char inbyte, in hash_df() argument 76 /* tmp = counter || num_bits_returned || [inbyte] */ in hash_df() 94 if (inbyte != INBYTE_IGNORE) in hash_df() 95 tmp[tmp_sz++] = inbyte; in hash_df() 101 * (where tmp = counter || num_bits_returned || [inbyte]) in hash_df() 174 /* V = (V + Hash(inbyte || V || [additional_input]) mod (2^seedlen) */ 175 static int add_hash_to_v(PROV_DRBG *drbg, unsigned char inbyte, in add_hash_to_v() argument 182 && EVP_DigestUpdate(ctx, &inbyte, 1) in add_hash_to_v()
|
H A D | drbg_hmac.c | 47 * inbyte is 0x00 on the first call and 0x01 on the second call. 52 * hmac->K = HMAC(hmac->K, hmac->V || inbyte || [in1] || [in2] || [in3]) 57 static int do_hmac(PROV_DRBG_HMAC *hmac, unsigned char inbyte, in do_hmac() argument 65 /* K = HMAC(K, V || inbyte || [in1] || [in2] || [in3]) */ in do_hmac() 67 || !EVP_MAC_update(ctx, &inbyte, 1) in do_hmac()
|
/freebsd/contrib/mandoc/ |
H A D | dba.c | 241 prepend(const char *instr, char inbyte) in prepend() argument 252 *outstr = inbyte; in prepend()
|
/freebsd/contrib/ntp/ntpd/ |
H A D | refclock_ripencc.c | 1889 int inbyte in tsip_input_proc() argument 1894 if (inbyte < 0 || inbyte > 0xFF) return; in tsip_input_proc() 1896 newbyte = (unsigned char)(inbyte); in tsip_input_proc()
|
/freebsd/sys/dev/qat/qat_common/ |
H A D | qat_uclo.c | 544 unsigned int inbyte = (unsigned int)((reg >> 0x18) ^ ch); in qat_uclo_calc_checksum() local 546 reg ^= inbyte << 0x8; in qat_uclo_calc_checksum()
|
/freebsd/sys/dev/qat_c2xxx/ |
H A D | qat_ae.c | 1785 u_int inbyte = (u_int)((reg >> 0x18) ^ ch); in qat_aefw_csum_calc() local 1787 reg ^= inbyte << (CRC_WIDTH - 0x8); in qat_aefw_csum_calc()
|