pub unsafe extern "C" fn Hacl_RSAPSS_new_rsapss_load_pkey(
modBits: u32,
eBits: u32,
nb: *mut u8,
eb: *mut u8,
) -> *mut u64
Expand description
Load a public key from key parts.
@param modBits Count of bits in modulus (n
).
@param eBits Count of bits in e
value.
@param nb Pointer to ceil(modBits / 8)
bytes where the modulus (n
) is read from.
@param eb Pointer to ceil(modBits / 8)
bytes where the e
value is read from.
@return Returns an allocated public key. Note: caller must take care to free()
the created key.