Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for t1Hat (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. lib/fips140/v1.26.0.zip

    computePublicKeyHash(pk []byte) [64]byte { H := sha3.NewShake256() H.Write(pk) var tr [64]byte H.Read(tr[:]) return tr } func computeT1Hat(t1Hat []nttElement, t1 [][n]uint16) { for i := range t1 { var w ringElement for j := range t1[i] { // t₁ <= 2¹⁰ - 1 // t₁ ⋅ 2ᵈ <= 2ᵈ(2¹⁰ - 1) = 2²³ - 2¹³ < q = 2²³ - 2¹³ + 1 z, _ := fieldToMontgomery(uint32(t1[i][j]) << 13) w[j] = z } t1Hat[i] = ntt(w) } } func pkEncode(buf []byte, ρ []byte, t1 [][n]uint16, p parameters) []byte { pk := append(buf, ρ...) for _, w := range...
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Jan 08 17:58:32 GMT 2026
    - 660.3K bytes
    - Click Count (0)
Back to Top