Home
last modified time | relevance | path

Searched refs:bigint_to_C_array (Results 1 – 1 of 1) sorted by relevance

/freebsd/crypto/libecc/scripts/
H A Dexpand_libecc.py1097 out_vectors += "\tconst u8 k_buf[] = "+bigint_to_C_array(k, getbytelen(curve.q))
1099 …ors += "static const u8 "+test_name+"_test_vectors_priv_key[] = \n"+bigint_to_C_array(keypair.priv…
1100 …+= "static const u8 "+test_name+"_test_vectors_expected_sig[] = \n"+bigint_to_C_array(stringtoint(…
1146 out_vectors += "\tconst u8 k_buf[] = "+bigint_to_C_array(k, getbytelen(curve.q))
1148 …ors += "static const u8 "+test_name+"_test_vectors_priv_key[] = \n"+bigint_to_C_array(keypair.priv…
1149 …+= "static const u8 "+test_name+"_test_vectors_expected_sig[] = \n"+bigint_to_C_array(stringtoint(…
1332 def bigint_to_C_array(bint, size): function
1433 out = "static const u8 "+curvename+"_"+intname+"[] = "+bigint_to_C_array(bigint, size)+"\n"