1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
//! This module implements Hash-to-Curve for NIST P-256.

use crate::Error;
use hacspec_lib::{hacspec_helper::NatMod, i2osp, FunctionalVec};
use p256::{is_square, sgn0, sqrt, P256FieldElement, P256Point, P256Scalar};
use sha256::hash;

/// # 8.2 Suites for NIST P-256
///
/// `P256_XMD:SHA-256_SSWU_RO_`
///
/// [`P256_XMD:SHA-256_SSWU_NU_`](P256_XMD_SHA256_SSWU_NU) is identical to `P256_XMD:SHA-256_SSWU_RO_`,
/// except that the encoding type is encode_to_curve (Section 3).
#[allow(non_camel_case_types)]
pub struct P256_XMD_SHA256_SSWU_RO {}

/// bytes to generate per field element in `expand_message`
const L: usize = 48;
/// Output size of H = SHA-256 in bytes
const B_IN_BYTES: usize = sha256::HASH_SIZE;
/// Input block size of H = SHA-256
const S_IN_BYTES: usize = 64;

#[allow(non_snake_case)]
fn expand_message(msg: &[u8], dst: &[u8], len_in_bytes: usize) -> Result<Vec<u8>, Error> {
    let ell = (len_in_bytes + B_IN_BYTES - 1) / B_IN_BYTES;
    if ell > 255 || len_in_bytes > u16::MAX.into() || dst.len() > 255 {
        return Err(Error::InvalidEll);
    }

    let dst_prime = dst.concat_byte(dst.len() as u8);
    let z_pad = vec![0u8; S_IN_BYTES];
    let l_i_b_str = i2osp(len_in_bytes, 2);

    // msg_prime = Z_pad || msg || l_i_b_str || 0 || dst_prime
    let msg_prime = z_pad
        .concat(msg)
        .concat(&l_i_b_str)
        .concat(&[0u8; 1])
        .concat(&dst_prime);

    let b_0 = hash(&msg_prime).to_vec(); // H(msg_prime)

    let payload_1 = b_0.concat_byte(1).concat(&dst_prime);
    let mut b_i = hash(&payload_1).to_vec(); // H(b_0 || 1 || dst_prime)

    let mut uniform_bytes = b_i.clone();
    for i in 2..=ell {
        // i < 256 is checked before
        let payload_i = strxor(&b_0, &b_i).concat_byte(i as u8).concat(&dst_prime);
        // H((b_0 ^ b_(i-1)) || 1 || dst_prime)
        b_i = hash(&payload_i).to_vec();
        uniform_bytes.extend_from_slice(&b_i);
    }
    uniform_bytes.truncate(len_in_bytes);
    Ok(uniform_bytes)
}

fn strxor(a: &[u8], b: &[u8]) -> Vec<u8> {
    debug_assert_eq!(a.len(), b.len());
    a.iter().zip(b.iter()).map(|(a, b)| a ^ b).collect()
}

/// Hash a message to a P256 field element.
pub fn hash_to_field(msg: &[u8], dst: &[u8], count: usize) -> Result<Vec<P256FieldElement>, Error> {
    let len_in_bytes = count * L;
    let uniform_bytes = expand_message(msg, dst, len_in_bytes)?;
    let mut u = Vec::with_capacity(count);
    for i in 0..count {
        let elm_offset = L * i;
        let tv = &uniform_bytes[elm_offset..L * (i + 1)];
        let tv = P256FieldElement::from_be_bytes(tv);
        u.push(tv);
    }
    Ok(u)
}

/// Hash a message to a P256 scalar.
pub fn hash_to_scalar(msg: &[u8], dst: &[u8], count: usize) -> Result<Vec<P256Scalar>, Error> {
    let len_in_bytes = count * L;
    let uniform_bytes = expand_message(msg, dst, len_in_bytes)?;
    let mut u = Vec::with_capacity(count);
    for i in 0..count {
        let elm_offset = L * i;
        let tv = &uniform_bytes[elm_offset..L * (i + 1)];
        let tv = P256Scalar::from_be_bytes(tv);
        u.push(tv);
    }
    Ok(u)
}

/// SSWU
fn map_to_curve(u: P256FieldElement) -> P256Point {
    let a: &P256FieldElement = &P256FieldElement::from_u128(3u128).neg();
    let b = &P256FieldElement::from_hex(
        "5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b",
    );
    let z = P256FieldElement::from_u128(10u128).neg();
    let tv1 = (z.pow(2) * u.pow(4) + z * u.pow(2)).inv0();
    let x1 = if tv1 == P256FieldElement::zero() {
        *b * (z * *a).inv()
    } else {
        (b.neg() * a.inv()) * (tv1 + P256FieldElement::from_u128(1u128))
    };

    let gx1 = x1.pow(3) + (*a) * x1 + (*b);
    let x2 = z * u.pow(2) * x1;
    let gx2 = x2.pow(3) + *a * x2 + *b;

    let mut output = if is_square(&gx1) {
        (x1, sqrt(&gx1))
    } else {
        (x2, sqrt(&gx2))
    };

    if sgn0(&u) != sgn0(&output.1) {
        output.1 = output.1.neg();
    }

    output.into()
}

/// Hash a message to a point in P256.
pub fn hash_to_curve(msg: &[u8], dst: &[u8]) -> Result<P256Point, Error> {
    let u: Vec<P256FieldElement> = hash_to_field(msg, dst, 2)?;
    let q0 = map_to_curve(u[0]);
    let q1 = map_to_curve(u[1]);
    let r = p256::point_add(q0, q1)?;
    Ok(r)
}

#[cfg(test)]
mod tests {
    use super::*;
    use std::fs::read_to_string;
    const ID: &str = "P256_XMD_SHA-256_SSWU_RO_";
    use serde_json::Value;

    pub fn load_vectors(path: &std::path::Path) -> Value {
        serde_json::from_str(&read_to_string(path).expect("File not found.")).unwrap()
    }

    #[test]
    fn p256_xmd_sha256_sswu_ro_hash_to_field() {
        let mut vector_path = std::path::Path::new("vectors").join(ID);
        vector_path.set_extension("json");
        eprintln!(" Reading {}", vector_path.display());

        let tests = load_vectors(vector_path.as_path());
        let dst = tests["dst"].as_str().unwrap().as_bytes();

        //debug_assert_eq!(tests["ciphersuite"].as_str().unwrap(), ID);

        for test_case in tests["vectors"].as_array().unwrap().iter() {
            let msg_str = test_case["msg"].as_str().unwrap();
            let msg = msg_str.as_bytes();

            let u_expected: Vec<_> = test_case["u"]
                .as_array()
                .unwrap()
                .iter()
                .map(|u_i| {
                    let u_i = u_i.as_str().unwrap();
                    let u0_expected = u_i.trim_start_matches("0x");
                    P256FieldElement::from_be_bytes(&hex::decode(u0_expected).unwrap())
                })
                .collect();

            let u_real = hash_to_field(msg, dst, 2).unwrap();
            debug_assert_eq!(u_real.len(), u_expected.len());
            for (u_real, u_expected) in u_real.iter().zip(u_expected.iter()) {
                debug_assert_eq!(
                    u_expected.as_ref(),
                    u_real.as_ref(),
                    "u0 did not match for {msg_str}",
                );
            }
        }
    }
    #[test]
    fn p256_xmd_sha256_sswu_ro_map_to_curve() {
        let mut vector_path = std::path::Path::new("vectors").join(ID);
        vector_path.set_extension("json");
        let vectors = load_vectors(vector_path.as_path());

        let test_cases = vectors["vectors"].as_array().unwrap().clone();

        for test_case in test_cases.iter() {
            let u = test_case["u"].as_array().unwrap();
            let u0 = u[0].as_str().unwrap().trim_start_matches("0x");
            let u0 = P256FieldElement::from_be_bytes(&hex::decode(u0).unwrap());
            let u1 = u[1].as_str().unwrap().trim_start_matches("0x");
            let u1 = P256FieldElement::from_be_bytes(&hex::decode(u1).unwrap());

            let (q0_x, q0_y) = map_to_curve(u0).into();
            let (q1_x, q1_y) = map_to_curve(u1).into();

            let q0_expected = &test_case["Q0"];
            let q0_x_expected = q0_expected["x"].as_str().unwrap().trim_start_matches("0x");
            let q0_x_expected =
                P256FieldElement::from_be_bytes(&hex::decode(q0_x_expected).unwrap());
            let q0_y_expected = q0_expected["y"].as_str().unwrap().trim_start_matches("0x");
            let q0_y_expected =
                P256FieldElement::from_be_bytes(&hex::decode(q0_y_expected).unwrap());

            let q1_expected = &test_case["Q1"];
            let q1_x_expected = q1_expected["x"].as_str().unwrap().trim_start_matches("0x");
            let q1_x_expected =
                P256FieldElement::from_be_bytes(&hex::decode(q1_x_expected).unwrap());
            let q1_y_expected = q1_expected["y"].as_str().unwrap().trim_start_matches("0x");
            let q1_y_expected =
                P256FieldElement::from_be_bytes(&hex::decode(q1_y_expected).unwrap());

            debug_assert_eq!(q0_x_expected, q0_x, "x0 incorrect");
            debug_assert_eq!(q0_y_expected, q0_y, "y0 incorrect");

            debug_assert_eq!(q1_x_expected, q1_x, "x1 incorrect");
            debug_assert_eq!(q1_y_expected, q1_y, "y1 incorrect");
        }
    }

    #[test]
    fn p256_xmd_sha256_sswu_ro_hash_to_curve() {
        let mut vector_path = std::path::Path::new("vectors").join(ID);
        vector_path.set_extension("json");
        let vectors = load_vectors(vector_path.as_path());

        let dst = vectors["dst"].as_str().unwrap();
        let dst = dst.as_bytes();
        let test_cases = vectors["vectors"].as_array().unwrap().clone();

        for test_case in test_cases.iter() {
            let msg = test_case["msg"].as_str().unwrap();
            let msg = msg.as_bytes();

            let p_expected = &test_case["P"];
            let p_x_expected = p_expected["x"].as_str().unwrap().trim_start_matches("0x");
            let p_x_expected = P256FieldElement::from_be_bytes(&hex::decode(p_x_expected).unwrap());
            let p_y_expected = p_expected["y"].as_str().unwrap().trim_start_matches("0x");
            let p_y_expected = P256FieldElement::from_be_bytes(&hex::decode(p_y_expected).unwrap());

            let (x, y) = hash_to_curve(msg, dst).unwrap().into();

            // debug_assert!(!inf, "Point should not be infinite");
            debug_assert_eq!(p_x_expected.as_ref(), x.as_ref(), "x-coordinate incorrect");
            debug_assert_eq!(p_y_expected.as_ref(), y.as_ref(), "y-coordinate incorrect");
        }
    }
}