Update FROST Ed448 per request

This commit is contained in:
Luke Parker
2022-09-16 12:16:37 -04:00
parent 31b64b3082
commit 7d4fcdea9e
2 changed files with 20 additions and 18 deletions

View File

@@ -57,6 +57,6 @@ pub struct NonIetfEd448Hram;
impl Hram<Ed448> for NonIetfEd448Hram {
#[allow(non_snake_case)]
fn hram(R: &Point, A: &Point, m: &[u8]) -> Scalar {
Ietf8032Ed448Hram::hram(&[CONTEXT, b"chal"].concat(), R, A, m)
Ietf8032Ed448Hram::hram(&[], R, A, m)
}
}