mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-01-08 06:08:08 -05:00
21 lines
593 B
Rust
21 lines
593 B
Rust
|
use crate::bitcoin::Scalar;
|
||
|
use ecdsa_fun::fun::marker::{Mark, NonZero, Secret};
|
||
|
|
||
|
pub trait ScalarExt {
|
||
|
fn to_secpfun_scalar(&self) -> ecdsa_fun::fun::Scalar;
|
||
|
}
|
||
|
|
||
|
impl ScalarExt for crate::monero::Scalar {
|
||
|
fn to_secpfun_scalar(&self) -> Scalar<Secret, NonZero> {
|
||
|
let mut little_endian_bytes = self.to_bytes();
|
||
|
|
||
|
little_endian_bytes.reverse();
|
||
|
let big_endian_bytes = little_endian_bytes;
|
||
|
|
||
|
ecdsa_fun::fun::Scalar::from_bytes(big_endian_bytes)
|
||
|
.expect("valid scalar")
|
||
|
.mark::<NonZero>()
|
||
|
.expect("non-zero scalar")
|
||
|
}
|
||
|
}
|