pub fn create_signing_message(
random_nonce: &str,
created_time: i64,
expiration_time: i64,
website_id: &str,
challenge_param: &[u8; 32],
public_key: &[u8; 32],
) -> StringExpand description
Creates a message to be signed from challenge data components
This function creates a canonical representation of the challenge data for signing. It takes individual challenge components rather than a complete challenge object, allowing it to be used during challenge creation.
§Arguments
random_nonce: The random nonce stringcreated_time: The challenge creation timestampexpiration_time: The challenge expiration timestampwebsite_id: The website identifierchallenge_param: The challenge parameter bytespublic_key: The public key bytes
§Returns
String: Canonical string representation for signing