Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 171 for cipher (0.21 sec)

  1. src/crypto/tls/key_schedule.go

    	if transcript == nil {
    		transcript = c.hash.New()
    	}
    	return c.expandLabel(secret, label, transcript.Sum(nil), c.hash.Size())
    }
    
    // extract implements HKDF-Extract with the cipher suite hash.
    func (c *cipherSuiteTLS13) extract(newSecret, currentSecret []byte) []byte {
    	if newSecret == nil {
    		newSecret = make([]byte, c.hash.Size())
    	}
    	return hkdf.Extract(c.hash.New, newSecret, currentSecret)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. pkg/config/security/security.go

    		return nil
    	}
    	return fmt.Errorf("bad key (%s): should have format a[b]", key)
    }
    
    // ValidCipherSuites contains a list of all ciphers supported in Gateway.server.tls.cipherSuites
    // Extracted from: `bssl ciphers -openssl-name ALL | rg -v PSK`
    var ValidCipherSuites = sets.New(
    	"ECDHE-ECDSA-AES128-GCM-SHA256",
    	"ECDHE-RSA-AES128-GCM-SHA256",
    	"ECDHE-ECDSA-AES256-GCM-SHA384",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. src/crypto/aes/block.go

    // ANSI C implementation, which carries the following notice:
    //
    //	rijndael-alg-fst.c
    //
    //	@version 3.0 (December 2000)
    //
    //	Optimised ANSI C code for the Rijndael cipher (now AES)
    //
    //	@author Vincent Rijmen <******@****.***>
    //	@author Antoon Bosselaers <******@****.***>
    //	@author Paulo Barreto <******@****.***>
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. src/crypto/tls/prf.go

    	return masterSecret
    }
    
    // keysFromMasterSecret generates the connection keys from the master
    // secret, given the lengths of the MAC key, cipher key and IV, as defined in
    // RFC 2246, Section 6.3.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 16:29:49 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. misc/chrome/gophertool/gopher.js

    Brad Fitzpatrick <******@****.***> 1436570231 -0600
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 11 14:36:33 UTC 2015
    - 1.2K bytes
    - Viewed (0)
  6. misc/chrome/gophertool/gopher.png

    gopher.png...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 23 21:05:18 UTC 2011
    - 5.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Either.java

    /**
     * Represents values with two possibilities.
     *
     * @param <L> the left type.
     * @param <R> the right type.
     */
    public abstract class Either<L, R> {
    
        public static <L, R> Either<L, R> left(L value) {
            return new Left<>(value);
        }
    
        public static <L, R> Either<L, R> right(R value) {
            return new Right<>(value);
        }
    
        /**
         * Take the value if this is a left.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/cap_freebsd.go

    	return int(right >> 62)
    }
    
    func capver(rights *CapRights) int {
    	return caprver(rights.Rights[0])
    }
    
    func caparsize(rights *CapRights) int {
    	return capver(rights) + 2
    }
    
    // CapRightsSet sets the permissions in setrights in rights.
    func CapRightsSet(rights *CapRights, setrights []uint64) error {
    	// This is essentially a copy of cap_rights_vset()
    	if capver(rights) != CAP_RIGHTS_VERSION_00 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/storage_factory.go

    			Indexers:       indexers,
    			Codec:          storageConfig.Codec,
    		}
    		cacher, err := cacherstorage.NewCacherFromConfig(cacherConfig)
    		if err != nil {
    			return nil, func() {}, err
    		}
    		var once sync.Once
    		destroyFunc := func() {
    			once.Do(func() {
    				cacher.Stop()
    				d()
    			})
    		}
    
    		return cacher, destroyFunc, nil
    	}
    }
    
    func objectTypeToArgs(obj runtime.Object) []interface{} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. src/math/tanh.go

    //
    // Cephes Math Library Release 2.8:  June, 2000
    // Copyright 1984, 1987, 1989, 1992, 2000 by Stephen L. Moshier
    //
    // The readme file at http://netlib.sandia.gov/cephes/ says:
    //    Some software in this archive may be from the book _Methods and
    // Programs for Mathematical Functions_ (Prentice-Hall or Simon & Schuster
    // International, 1989) or from the Cephes Mathematical Library, a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top