qfall-math 0.1.1

Mathematical foundations for rapid prototyping of lattice-based cryptography
Documentation
// Copyright © 2023 Niklas Siemer
//
// This file is part of qFALL-math.
//
// qFALL-math is free software: you can redistribute it and/or modify it under
// the terms of the Mozilla Public License Version 2.0 as published by the
// Mozilla Foundation. See <https://mozilla.org/en-US/MPL/2.0/>.

//! This module contains algorithms for sampling according
//! to the discrete Gaussian distribution.

use crate::{
    error::MathError,
    integer_mod_q::{Modulus, PolyOverZq},
    rational::Q,
    traits::SetCoefficient,
    utils::{
        index::evaluate_index,
        sample::discrete_gauss::{DiscreteGaussianIntegerSampler, LookupTableSetting, TAILCUT},
    },
};
use std::fmt::Display;

impl PolyOverZq {
    /// Initializes a new [`PolyOverZq`] with maximum degree `max_degree`
    /// and with each entry sampled independently according to the
    /// discrete Gaussian distribution, using [`Z::sample_discrete_gauss`](crate::integer::Z::sample_discrete_gauss).
    ///
    /// Parameters:
    /// - `max_degree`: specifies the included maximal degree the created [`PolyOverZq`] should have
    /// - `modulus`: specififes the [`Modulus`] over which the ring of integer coefficients is defined
    /// - `center`: specifies the positions of the center with peak probability
    /// - `s`: specifies the Gaussian parameter, which is proportional
    ///   to the standard deviation `sigma * sqrt(2 * pi) = s`
    ///
    /// Returns a fresh [`PolyOverZq`] instance of maximum degree `max_degree`
    /// with coefficients chosen independently according the discrete Gaussian distribution or
    /// a [`MathError`] if `s < 0`.
    ///
    /// # Examples
    /// ```
    /// use qfall_math::integer_mod_q::PolyOverZq;
    ///
    /// let sample = PolyOverZq::sample_discrete_gauss(2, 17, 0, 1).unwrap();
    /// ```
    ///
    /// # Errors and Failures
    /// - Returns a [`MathError`] of type [`InvalidIntegerInput`](MathError::InvalidIntegerInput)
    ///   if `s < 0`.
    ///
    /// # Panics ...
    /// - if `max_degree` is negative, or does not fit into an [`i64`].
    /// - if `modulus` is smaller than `2`.
    pub fn sample_discrete_gauss(
        max_degree: impl TryInto<i64> + Display,
        modulus: impl Into<Modulus>,
        center: impl Into<Q>,
        s: impl Into<Q>,
    ) -> Result<Self, MathError> {
        let max_degree = evaluate_index(max_degree).unwrap();
        let modulus = modulus.into();

        let center = center.into();
        let s = s.into();
        let mut poly = PolyOverZq::from(&modulus);

        let mut dgis = DiscreteGaussianIntegerSampler::init(
            &center,
            &s,
            unsafe { TAILCUT },
            LookupTableSetting::FillOnTheFly,
        )?;

        for index in 0..=max_degree {
            let sample = dgis.sample_z();
            unsafe { poly.set_coeff_unchecked(index, sample) };
        }
        Ok(poly)
    }
}

#[cfg(test)]
mod test_sample_discrete_gauss {
    use crate::{integer::Z, integer_mod_q::PolyOverZq, rational::Q, traits::GetCoefficient};

    /// Checks whether `sample_discrete_gauss` is available for all types
    /// implementing [`Into<Z>`], i.e. u8, u16, u32, u64, i8, ...
    /// or [`Into<Q>`], i.e. u8, i16, f32, Z, Q, ...
    #[test]
    fn availability() {
        let center = Q::ZERO;
        let s = Q::ONE;

        let _ = PolyOverZq::sample_discrete_gauss(1u8, 17u8, 0f32, 1u8);
        let _ = PolyOverZq::sample_discrete_gauss(1u16, 17u16, 0f64, 1u16);
        let _ = PolyOverZq::sample_discrete_gauss(1u32, 17u32, 0f32, 1u32);
        let _ = PolyOverZq::sample_discrete_gauss(1u64, 17u64, 0f64, 1u64);
        let _ = PolyOverZq::sample_discrete_gauss(1i8, 17u8, 0f32, 1i8);
        let _ = PolyOverZq::sample_discrete_gauss(1i8, 17i8, 0f32, 1i16);
        let _ = PolyOverZq::sample_discrete_gauss(1i16, 17i16, 0f32, 1i32);
        let _ = PolyOverZq::sample_discrete_gauss(1i32, 17i32, 0f64, 1i64);
        let _ = PolyOverZq::sample_discrete_gauss(1i64, 17i64, center, s);
        let _ = PolyOverZq::sample_discrete_gauss(1u8, 17u8, 0f32, 1f64);
    }

    /// Checks whether the boundaries of the interval are kept for small moduli.
    #[test]
    fn boundaries_kept_small() {
        let modulus = 128;

        for _ in 0..32 {
            let poly = PolyOverZq::sample_discrete_gauss(3, modulus, 15, 1).unwrap();

            for i in 0..3 {
                let sample: Z = poly.get_coeff(i).unwrap();
                assert!(Z::ZERO <= sample);
                assert!(sample < modulus);
            }
        }
    }

    /// Checks whether the boundaries of the interval are kept for large moduli.
    #[test]
    fn boundaries_kept_large() {
        let modulus = u64::MAX;

        for _ in 0..256 {
            let poly = PolyOverZq::sample_discrete_gauss(3, modulus, 1, 1).unwrap();

            for i in 0..3 {
                let sample: Z = poly.get_coeff(i).unwrap();
                assert!(Z::ZERO <= sample);
                assert!(sample < modulus);
            }
        }
    }

    /// Checks whether the number of coefficients is correct.
    #[test]
    fn nr_coeffs() {
        let degrees = [1, 3, 7, 15, 32, 120];
        for degree in degrees {
            let res = PolyOverZq::sample_discrete_gauss(degree, u64::MAX, i64::MAX, 1).unwrap();

            assert_eq!(
                res.get_degree(),
                degree,
                "Could fail with negligible probability."
            );
        }
    }

    /// Checks whether the maximum degree needs to be at least 0.
    #[test]
    #[should_panic]
    fn invalid_max_degree() {
        let _ = PolyOverZq::sample_discrete_gauss(-1, 17, 0, 1).unwrap();
    }

    /// Checks whether too small modulus is insufficient.
    #[test]
    #[should_panic]
    fn invalid_modulus() {
        let _ = PolyOverZq::sample_discrete_gauss(3, 1, 0, 1).unwrap();
    }
}