Lines Matching refs:msg_index
179 int zero_index = 0, msg_index, mlen = -1; in RSA_padding_check_PKCS1_type_2() local
234 msg_index = zero_index + 1; in RSA_padding_check_PKCS1_type_2()
235 mlen = num - msg_index; in RSA_padding_check_PKCS1_type_2()
254 for (msg_index = 1; msg_index < num - RSA_PKCS1_PADDING_SIZE; msg_index <<= 1) { in RSA_padding_check_PKCS1_type_2()
255 mask = ~constant_time_eq(msg_index & (num - RSA_PKCS1_PADDING_SIZE - mlen), 0); in RSA_padding_check_PKCS1_type_2()
256 for (i = RSA_PKCS1_PADDING_SIZE; i < num - msg_index; i++) in RSA_padding_check_PKCS1_type_2()
257 em[i] = constant_time_select_8(mask, em[i + msg_index], em[i]); in RSA_padding_check_PKCS1_type_2()
412 int zero_index = 0, msg_index; in ossl_rsa_padding_check_PKCS1_type_2() local
492 msg_index = zero_index + 1; in ossl_rsa_padding_check_PKCS1_type_2()
499 good &= constant_time_ge(tlen, num - msg_index); in ossl_rsa_padding_check_PKCS1_type_2()
501 msg_index = constant_time_select_int(good, msg_index, synth_msg_index); in ossl_rsa_padding_check_PKCS1_type_2()
510 for (i = msg_index, j = 0; i < flen && j < tlen; i++, j++) in ossl_rsa_padding_check_PKCS1_type_2()