Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 90 for cipher (1.29 sec)

  1. okhttp/src/test/java/okhttp3/CallHandshakeTest.kt

      private val handshakeCertificates = platform.localhostHandshakeCertificates()
    
      /** Ciphers in order we observed directly on the socket. */
      private lateinit var handshakeEnabledCipherSuites: List<String>
    
      /** Ciphers in order we observed on sslSocketFactory defaults. */
      private lateinit var defaultEnabledCipherSuites: List<String>
    
      /** Ciphers in order we observed on sslSocketFactory supported. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. src/crypto/ecdh/ecdh_test.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ecdh_test
    
    import (
    	"bytes"
    	"crypto"
    	"crypto/cipher"
    	"crypto/ecdh"
    	"crypto/rand"
    	"crypto/sha256"
    	"encoding/hex"
    	"fmt"
    	"internal/testenv"
    	"io"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"regexp"
    	"strings"
    	"testing"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 18K bytes
    - Viewed (0)
  3. src/crypto/ecdsa/ecdsa.go

    	if err != nil {
    		return nil, err
    	}
    
    	// Create a CSPRNG that xors a stream of zeros with
    	// the output of the AES-CTR instance.
    	const aesIV = "IV for ECDSA CTR"
    	return &cipher.StreamReader{
    		R: zeroReader,
    		S: cipher.NewCTR(block, []byte(aesIV)),
    	}, nil
    }
    
    type zr struct{}
    
    var zeroReader = zr{}
    
    // Read replaces the contents of dst with zeros. It is safe for concurrent use.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/server_test.go

    		name               string
    		serverCipherSuites []uint16
    		clientCipherSuites []uint16
    		expectSuccess      bool
    	}{
    		{
    			name:          "default cipher suites",
    			expectSuccess: true,
    		},
    		{
    			name:               "client and istiod cipher suites match",
    			serverCipherSuites: []uint16{tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    distributed under the License is distributed on an "AS IS" BASIS,
    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 encryptionconfig
    
    import (
    	"context"
    	"crypto/aes"
    	"crypto/cipher"
    	"crypto/sha256"
    	"encoding/base64"
    	"errors"
    	"fmt"
    	"net/http"
    	"os"
    	"sync"
    	"sync/atomic"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  6. src/crypto/tls/boring_test.go

    	}
    	return false
    }
    
    func isECDSA(id uint16) bool {
    	for _, suite := range cipherSuites {
    		if suite.id == id {
    			return suite.flags&suiteECSign == suiteECSign
    		}
    	}
    	panic(fmt.Sprintf("unknown cipher suite %#x", id))
    }
    
    func isBoringSignatureScheme(alg SignatureScheme) bool {
    	switch alg {
    	default:
    		return false
    	case PKCS1WithSHA256,
    		ECDSAWithP256AndSHA256,
    		PKCS1WithSHA384,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top