utils.rs 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. use crate::consensus::ouroboros::types::Float10;
  2. use dashu::integer::{IBig, Sign, UBig};
  3. use group::ff::PrimeField;
  4. use log::info;
  5. use pasta_curves::pallas;
  6. pub(crate) fn fbig2ibig(f: Float10) -> IBig {
  7. info!("fbig -> ibig (f): {}", f);
  8. let rad = IBig::try_from(10).unwrap();
  9. let sig = f.repr().significand();
  10. let exp = f.repr().exponent();
  11. let val: IBig = if exp >= 0 { sig.clone() * rad.pow(exp as usize) } else { sig.clone() };
  12. info!("fbig -> ibig (i): {}", val);
  13. val
  14. }
  15. pub(crate) fn base2ibig(base: pallas::Base) -> IBig {
  16. //
  17. let byts: [u8; 32] = base.to_repr();
  18. let words: [u64; 4] = [
  19. u64::from_le_bytes(byts[0..8].try_into().expect("")),
  20. u64::from_le_bytes(byts[8..16].try_into().expect("")),
  21. u64::from_le_bytes(byts[16..24].try_into().expect("")),
  22. u64::from_le_bytes(byts[24..32].try_into().expect("")),
  23. ];
  24. let uparts = UBig::from_words(&words);
  25. //TODO both y, and t are positive, but workout the sign for general use
  26. let ibig = IBig::from_parts(Sign::Positive, uparts);
  27. ibig
  28. }
  29. pub(crate) fn fbig2base(f: Float10) -> pallas::Base {
  30. info!("fbig -> base (f): {}", f);
  31. let val: IBig = fbig2ibig(f);
  32. let (sign, word) = val.as_sign_words();
  33. //TODO (res) set pallas base sign, i.e sigma1 is negative.
  34. let mut words: [u64; 4] = [0, 0, 0, 0];
  35. for i in 0..word.len() {
  36. words[i] = word[i];
  37. }
  38. let base = match sign {
  39. Sign::Positive => pallas::Base::from_raw(words),
  40. Sign::Negative => pallas::Base::from_raw(words).neg(),
  41. };
  42. base
  43. }
  44. #[cfg(test)]
  45. mod tests {
  46. use dashu::integer::IBig;
  47. use pasta_curves::pallas;
  48. use crate::consensus::ouroboros::{
  49. consts::RADIX_BITS,
  50. types::Float10,
  51. utils::{base2ibig, fbig2base, fbig2ibig},
  52. };
  53. #[test]
  54. fn dashu_fbig2ibig() {
  55. let f =
  56. Float10::from_str_native("234234223.000").unwrap().with_precision(RADIX_BITS).value();
  57. let i: IBig = fbig2ibig(f);
  58. let sig = IBig::from(234234223);
  59. assert_eq!(i, sig);
  60. }
  61. #[test]
  62. fn dashu_test_base2ibig() {
  63. //
  64. let fbig: Float10 = Float10::from_str_native(
  65. "28948022309329048855892746252171976963363056481941560715954676764349967630337",
  66. )
  67. .unwrap()
  68. .with_precision(RADIX_BITS)
  69. .value();
  70. let ibig = fbig2ibig(fbig.clone());
  71. let res_base: pallas::Base = fbig2base(fbig.clone());
  72. let res_ibig: IBig = base2ibig(res_base);
  73. assert_eq!(res_ibig, ibig);
  74. }
  75. }