use crate::c_api::utils::*;
use std::os::raw::c_int;
#[derive(Copy, Clone)]
#[repr(C)]
pub struct U2048 {
words: [u64; 32],
}
impl From<crate::integer::bigint::U2048> for U2048 {
fn from(value: crate::integer::bigint::U2048) -> Self {
Self { words: value.0 }
}
}
impl From<U2048> for crate::integer::bigint::U2048 {
fn from(value: U2048) -> Self {
Self(value.words)
}
}
#[no_mangle]
pub unsafe extern "C" fn U2048_from_little_endian_bytes(
input: *const u8,
len: usize,
result: *mut U2048,
) -> c_int {
catch_panic(|| {
let mut inner = crate::integer::bigint::U2048::default();
let input = std::slice::from_raw_parts(input, len);
inner.copy_from_le_byte_slice(input);
*result = U2048::from(inner);
})
}
#[no_mangle]
pub unsafe extern "C" fn U2048_from_big_endian_bytes(
input: *const u8,
len: usize,
result: *mut U2048,
) -> c_int {
catch_panic(|| {
let mut inner = crate::integer::bigint::U2048::default();
let input = std::slice::from_raw_parts(input, len);
inner.copy_from_be_byte_slice(input);
*result = U2048::from(inner);
})
}
#[no_mangle]
pub unsafe extern "C" fn U2048_little_endian_bytes(
input: U2048,
result: *mut u8,
len: usize,
) -> c_int {
catch_panic(|| {
check_ptr_is_non_null_and_aligned(result).unwrap();
let bytes = std::slice::from_raw_parts_mut(result, len);
crate::integer::bigint::U2048::from(input).copy_to_le_byte_slice(bytes);
})
}
#[no_mangle]
pub unsafe extern "C" fn U2048_big_endian_bytes(
input: U2048,
result: *mut u8,
len: usize,
) -> c_int {
catch_panic(|| {
check_ptr_is_non_null_and_aligned(result).unwrap();
let bytes = std::slice::from_raw_parts_mut(result, len);
crate::integer::bigint::U2048::from(input).copy_to_be_byte_slice(bytes);
})
}