/** * Converts an 84-byte FREAK descriptor into a Uint32Array of 2 elements (64 bits). * @param {Uint8Array} descriptor - The 84-byte FREAK descriptor. * @returns {Uint32Array} Array of two 32-bit integers. */ export function binarizeFREAK64(descriptor: Uint8Array): Uint32Array; /** * Converts an 84-byte FREAK descriptor into a Uint32Array of 2 elements (64 bits). * @param {Uint8Array} descriptor - The 84-byte FREAK descriptor. * @returns {Uint32Array} Array of two 32-bit integers. */ export function binarizeFREAK128(descriptor: Uint8Array): Uint32Array; /** * Converts an 84-byte FREAK descriptor into a Uint32Array of 2 elements (64 bits). * @param {Uint8Array} descriptor - The 84-byte FREAK descriptor. * @returns {Uint32Array} Array of two 32-bit integers. */ export function binarizeFREAK32(descriptor: Uint8Array): Uint32Array;