Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 12 of 12 for ConstantTimeCompare (0.12 seconds)

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

  1. lib/fips140/v1.0.0-c2097c7c.zip

    == t, and zero otherwise. func (e *{{ .Element }}) Equal(t *{{ .Element }}) int { eBytes := e.Bytes() tBytes := t.Bytes() return subtle.ConstantTimeCompare(eBytes, tBytes) } // IsZero returns 1 if e == 0, and zero otherwise. func (e *{{ .Element }}) IsZero() int { zero := make([]byte, {{ .Prefix }}ElementLen) eBytes := e.Bytes() return subtle.ConstantTimeCompare(eBytes, zero) } // Set sets e = t, and returns e. func (e *{{ .Element }}) Set(t *{{ .Element }}) *{{ .Element }} { e.x = t.x return e }...
    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)
  2. api/go1.txt

    pkg crypto/sha512, const Size384 ideal-int
    pkg crypto/sha512, func New() hash.Hash
    pkg crypto/sha512, func New384() hash.Hash
    pkg crypto/subtle, func ConstantTimeByteEq(uint8, uint8) int
    pkg crypto/subtle, func ConstantTimeCompare([]uint8, []uint8) int
    pkg crypto/subtle, func ConstantTimeCopy(int, []uint8, []uint8)
    pkg crypto/subtle, func ConstantTimeEq(int32, int32) int
    pkg crypto/subtle, func ConstantTimeSelect(int, int, int) int
    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