Lines Matching refs:from_u32
531 let p = BigNum::from_u32(283).unwrap(); in test_priv_key_from_parts()
532 let q = BigNum::from_u32(47).unwrap(); in test_priv_key_from_parts()
533 let g = BigNum::from_u32(60).unwrap(); in test_priv_key_from_parts()
534 let priv_key = BigNum::from_u32(15).unwrap(); in test_priv_key_from_parts()
535 let pub_key = BigNum::from_u32(207).unwrap(); in test_priv_key_from_parts()
538 assert_eq!(dsa.pub_key(), &BigNum::from_u32(207).unwrap()); in test_priv_key_from_parts()
539 assert_eq!(dsa.priv_key(), &BigNum::from_u32(15).unwrap()); in test_priv_key_from_parts()
540 assert_eq!(dsa.p(), &BigNum::from_u32(283).unwrap()); in test_priv_key_from_parts()
541 assert_eq!(dsa.q(), &BigNum::from_u32(47).unwrap()); in test_priv_key_from_parts()
542 assert_eq!(dsa.g(), &BigNum::from_u32(60).unwrap()); in test_priv_key_from_parts()
547 let p = BigNum::from_u32(283).unwrap(); in test_pub_key_from_parts()
548 let q = BigNum::from_u32(47).unwrap(); in test_pub_key_from_parts()
549 let g = BigNum::from_u32(60).unwrap(); in test_pub_key_from_parts()
550 let pub_key = BigNum::from_u32(207).unwrap(); in test_pub_key_from_parts()
553 assert_eq!(dsa.pub_key(), &BigNum::from_u32(207).unwrap()); in test_pub_key_from_parts()
554 assert_eq!(dsa.p(), &BigNum::from_u32(283).unwrap()); in test_pub_key_from_parts()
555 assert_eq!(dsa.q(), &BigNum::from_u32(47).unwrap()); in test_pub_key_from_parts()
556 assert_eq!(dsa.g(), &BigNum::from_u32(60).unwrap()); in test_pub_key_from_parts()