Home
last modified time | relevance | path

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

/aosp_15_r20/external/rust/android-crates-io/crates/ring/src/rsa/
Dkeypair.rs259 let (p, p_bits) = bigint::Nonnegative::from_be_bytes_with_bit_length(p)
261 let (q, q_bits) = bigint::Nonnegative::from_be_bytes_with_bit_length(q)
377 let (d, d_bits) = bigint::Nonnegative::from_be_bytes_with_bit_length(d)
Dpublic_modulus.rs36 let (value, bits) = bigint::Modulus::from_be_bytes_with_bit_length(n, cpu_features)?; in from_be_bytes()
/aosp_15_r20/external/rust/android-crates-io/crates/ring/src/arithmetic/
Dnonnegative.rs27 pub fn from_be_bytes_with_bit_length( in from_be_bytes_with_bit_length() method
Dbigint.rs975 let (modulus, _) = Modulus::<M>::from_be_bytes_with_bit_length( in test_modulus_debug()
1016 Modulus::from_be_bytes_with_bit_length(untrusted::Input::from(&value), cpu_features) in consume_modulus()
1024 Nonnegative::from_be_bytes_with_bit_length(untrusted::Input::from(&bytes)).unwrap(); in consume_nonnegative()
/aosp_15_r20/external/rust/android-crates-io/crates/ring/src/arithmetic/bigint/
Dmodulus.rs108 pub(crate) fn from_be_bytes_with_bit_length( in from_be_bytes_with_bit_length() method