Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 324 for cipher (0.12 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. src/crypto/tls/handshake_server.go

    	var clientCipher, serverCipher any
    	var clientHash, serverHash hash.Hash
    
    	if hs.suite.aead == nil {
    		clientCipher = hs.suite.cipher(clientKey, clientIV, true /* for reading */)
    		clientHash = hs.suite.mac(clientMAC)
    		serverCipher = hs.suite.cipher(serverKey, serverIV, false /* not for reading */)
    		serverHash = hs.suite.mac(serverMAC)
    	} else {
    		clientCipher = hs.suite.aead(clientKey, clientIV)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. src/crypto/tls/tls_test.go

    	}
    }
    
    // http2isBadCipher is copied from net/http.
    // TODO: if it ends up exposed somewhere, use that instead.
    func http2isBadCipher(cipher uint16) bool {
    	switch cipher {
    	case TLS_RSA_WITH_RC4_128_SHA,
    		TLS_RSA_WITH_3DES_EDE_CBC_SHA,
    		TLS_RSA_WITH_AES_128_CBC_SHA,
    		TLS_RSA_WITH_AES_256_CBC_SHA,
    		TLS_RSA_WITH_AES_128_CBC_SHA256,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  4. 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)
  5. CHANGELOG.md

        its own IDN mapping table in the library.
    
     *  New: Prefer the client's configured precedence order for TLS cipher suites. (OkHttp used to
        prefer the JDK’s precedence order.) This change may cause your HTTP calls to negotiate a
        different cipher suite than before! OkHttp's defaults cipher suites are selected for good
        security and performance.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  6. maven-xml-impl/src/test/java/org/apache/maven/internal/xml/XmlNodeImplTest.java

            String dominant = "<relocations>\n" + "  <relocation>\n"
                    + "    <pattern>org.apache.shiro.crypto.CipherService</pattern>\n"
                    + "    <shadedPattern>org.apache.shiro.crypto.cipher.CipherService</shadedPattern>\n"
                    + "  </relocation>\n"
                    + "</relocations>";
            String recessive = "<relocations combine.children=\"append\">\n"
                    + "  <relocation>\n"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package kmsv2 transforms values for storage at rest using a Envelope v2 provider
    package kmsv2
    
    import (
    	"context"
    	"crypto/aes"
    	"crypto/cipher"
    	"crypto/sha256"
    	"fmt"
    	"sort"
    	"time"
    	"unsafe"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 00:23:50 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  8. src/go/build/deps_test.go

    	crypto/internal/boring/sig,
    	crypto/internal/boring/syso,
    	golang.org/x/sys/cpu,
    	hash, embed
    	< crypto
    	< crypto/subtle
    	< crypto/internal/alias
    	< crypto/cipher;
    
    	crypto/cipher,
    	crypto/internal/boring/bcache
    	< crypto/internal/boring
    	< crypto/boring;
    
    	crypto/internal/alias
    	< crypto/internal/randutil
    	< crypto/internal/nistec/fiat
    	< crypto/internal/nistec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. 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)
  10. cluster/gce/config-default.sh

    # sig-storage uses it to create Virtual Hard Disks in tests
    export WINDOWS_ENABLE_HYPERV="${WINDOWS_ENABLE_HYPERV:-false}"
    
    # TLS_CIPHER_SUITES defines cipher suites allowed to be used by kube-apiserver.
    # If this variable is unset or empty, kube-apiserver will allow its default set of cipher suites.
    export TLS_CIPHER_SUITES=""
    
    # CLOUD_PROVIDER_FLAG defines the cloud-provider value presented to KCM, apiserver,
    # and kubelet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top