Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 141 - 143 of 143 for Separator (0.46 seconds)

  1. lib/fips140/v1.1.0-rc1.zip

    (*[32]byte)(random)), nil } func computeMessageHash(tr []byte, msg []byte, context string) ([64]byte, error) { if len(context) > 255 { return [64]byte{}, errContextTooLong } H := sha3.NewShake256() H.Write(tr) H.Write([]byte{0}) // ML-DSA / HashML-DSA domain separator H.Write([]byte{byte(len(context))}) H.Write([]byte(context)) H.Write(msg) var μ [64]byte H.Read(μ[:]) return μ, nil } func signInternal(priv *PrivateKey, μ *[64]byte, random *[32]byte) []byte { p, k, l := priv.pub.p, priv.pub.p.k, priv.pub.p.l A,...
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Dec 11 16:27:41 GMT 2025
    - 663K bytes
    - Click Count (0)
  2. lib/fips140/v1.0.0-c2097c7c.zip

    FIPS 203, Algorithm 13. The two are merged to save // copies and allocations. func kemKeyGen1024(dk *DecapsulationKey1024, d, z *[32]byte) { dk.d = *d dk.z = *z g := sha3.New512() g.Write(d[:]) g.Write([]byte{k1024}) // Module dimension as a domain separator. G := g.Sum(make([]byte, 0, 64)) ρ, σ := G[:32], G[32:] dk.ρ = [32]byte(ρ) A := &dk.a for i := byte(0); i < k1024; i++ { for j := byte(0); j < k1024; j++ { A[i*k1024+j] = sampleNTT(ρ, j, i) } } var N byte s := &dk.s for i := range s { s[i] = ntt(samplePolyCBD(σ,...
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Sep 25 19:53:19 GMT 2025
    - 642.7K bytes
    - Click Count (0)
  3. api/go1.txt

    pkg path, func Match(string, string) (bool, error)
    pkg path, func Split(string) (string, string)
    pkg path, var ErrBadPattern error
    pkg path/filepath, const ListSeparator ideal-char
    pkg path/filepath, const Separator ideal-char
    pkg path/filepath, func Abs(string) (string, error)
    pkg path/filepath, func Base(string) string
    pkg path/filepath, func Clean(string) string
    pkg path/filepath, func Dir(string) string
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Click Count (0)
Back to Top