Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ringCompressAndEncode1 (0.33 sec)

  1. src/crypto/internal/mlkem768/mlkem768.go

    		copy(head, in)
    	}
    	tail = head[len(in):]
    	return
    }
    
    // ringCompressAndEncode1 appends a 32-byte encoding of a ring element to s,
    // compressing one coefficients per bit.
    //
    // It implements Compress₁, according to FIPS 203 (DRAFT), Definition 4.5,
    // followed by ByteEncode₁, according to FIPS 203 (DRAFT), Algorithm 4.
    func ringCompressAndEncode1(s []byte, f ringElement) []byte {
    	s, b := sliceForAppend(s, encodingSize1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
Back to top