const BUFFER_1_SIZE: usize = 32;
const BUFFER_2_SIZE: usize = 32;
/// A static mutable buffer acting as temporary storage for certain operations,
/// such as handling temporary big uint representations.
/// Highly unsafe, use with caution.
///
/// It doesn't matter what we initialize with, since it needs to be cleared before each use.
static mut BUFFER_1: = ;
/// The second buffer is for when the first one is busy with something else.
static mut BUFFER_2: = ;
pub unsafe
pub unsafe
pub unsafe