Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 356 for cipher (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. cluster/gce/config-test.sh

    export WINDOWS_NODE_PROBLEM_DETECTOR_CUSTOM_FLAGS="${WINDOWS_NODE_PROBLEM_DETECTOR_CUSTOM_FLAGS:-}"
    
    # 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: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  9. cmd/kubelet/app/server.go

    	if len(tlsCipherSuites) > 0 {
    		insecureCiphers := cliflag.InsecureTLSCiphers()
    		for i := 0; i < len(tlsCipherSuites); i++ {
    			for cipherName, cipherID := range insecureCiphers {
    				if tlsCipherSuites[i] == cipherID {
    					klog.InfoS("Use of insecure cipher detected.", "cipher", cipherName)
    				}
    			}
    		}
    	}
    
    	minTLSVersion, err := cliflag.TLSVersion(kc.TLSMinVersion)
    	if err != nil {
    		return nil, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. src/crypto/tls/key_agreement.go

    		if err != nil {
    			return nil, err
    		}
    	}
    	if (sigType == signaturePKCS1v15 || sigType == signatureRSAPSS) != ka.isRSA {
    		return nil, errors.New("tls: certificate cannot be used with the selected cipher suite")
    	}
    
    	signed := hashForServerKeyExchange(sigType, sigHash, ka.version, clientHello.random, hello.random, serverECDHEParams)
    
    	signOpts := crypto.SignerOpts(sigHash)
    	if sigType == signatureRSAPSS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top