Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for pairwiseTest (0.17 sec)

  1. lib/fips140/v1.0.0.zip

    "crypto/internal/fips140" _ "crypto/internal/fips140/check" "errors" "sync" ) func fipsPCT(k *PrivateKey) error { return fips140.PCT("Ed25519 sign and verify PCT", func() error { return pairwiseTest(k) }) } // pairwiseTest needs to be a top-level function declaration to let the calls // inline and their allocations not escape. func pairwiseTest(k *PrivateKey) error { msg := []byte("PCT") sig := Sign(k, msg) // Note that this runs pub.a.SetBytes. If we wanted to make key generation // in FIPS mode faster, we could...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
Back to top