Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for boringcrypto (0.18 sec)

  1. src/crypto/hmac/hmac.go

    // or [encoding.BinaryUnmarshaler].
    func New(h func() hash.Hash, key []byte) hash.Hash {
    	if boring.Enabled {
    		hm := boring.NewHMAC(h, key)
    		if hm != nil {
    			return hm
    		}
    		// BoringCrypto did not recognize h, so fall through to standard Go code.
    	}
    	hm := new(hmac)
    	hm.outer = h()
    	hm.inner = h()
    	unique := true
    	func() {
    		defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. src/crypto/internal/boring/LICENSE

    The Go source code and supporting files in this directory
    are covered by the usual Go license (see ../../../../LICENSE).
    
    When building with GOEXPERIMENT=boringcrypto, the following applies.
    
    The goboringcrypto_linux_amd64.syso object file is built
    from BoringSSL source code by build/build.sh and is covered
    by the BoringSSL license reproduced below and also at
    https://boringssl.googlesource.com/boringssl/+/fips-20190808/LICENSE.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top