Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 50 for Curve (0.1 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    }
    
    // EncryptionAlgorithmType can define an asymmetric encryption algorithm type.
    type EncryptionAlgorithmType string
    
    const (
    	// EncryptionAlgorithmECDSAP256 defines the ECDSA encryption algorithm type with curve P256.
    	EncryptionAlgorithmECDSAP256 EncryptionAlgorithmType = "ECDSA-P256"
    	// EncryptionAlgorithmRSA2048 defines the RSA encryption algorithm type with key size 2048 bits.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  2. src/net/timeout_test.go

    	}
    	// Since the previous attempt took actual, we can't expect to beat that
    	// duration by any significant margin. Try the next attempt with an arbitrary
    	// factor above that, so that our growth curve is at least exponential.
    	next = actual * 5 / 4
    	if next > maxDynamicTimeout {
    		return maxDynamicTimeout, true
    	}
    	return next, true
    }
    
    // There is a very similar copy of this in os/timeout_test.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 18:06:55 UTC 2024
    - 30K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p256_asm_arm64.s

    //go:build !purego
    
    // This file contains constant-time, 64-bit assembly implementation of
    // P256. The optimizations performed here are described in detail in:
    // S.Gueron and V.Krasnov, "Fast prime field elliptic-curve cryptography with
    //                          256-bit primes"
    // http://link.springer.com/article/10.1007%2Fs13389-014-0090-x
    // https://eprint.iacr.org/2013/816.pdf
    
    #include "textflag.h"
    
    #define res_ptr R0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. src/math/big/int.go

    // Design and Implementation of Symbolic Computation Systems, pp 45-58.
    // The cosequences are updated according to Algorithm 10.45 from
    // Cohen et al. "Handbook of Elliptic and Hyperelliptic Curve Cryptography" pp 192.
    func (z *Int) lehmerGCD(x, y, a, b *Int) *Int {
    	var A, B, Ua, Ub *Int
    
    	A = new(Int).Abs(a)
    	B = new(Int).Abs(b)
    
    	extended := x != nil || y != nil
    
    	if extended {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  5. src/crypto/x509/x509_test.go

    	_, err := MarshalPKIXPublicKey(&ecdsa.PublicKey{})
    	if err == nil {
    		t.Errorf("expected error, got MarshalPKIXPublicKey success")
    	}
    	_, err = MarshalPKIXPublicKey(&ecdsa.PublicKey{
    		Curve: elliptic.P256(),
    		X:     big.NewInt(1), Y: big.NewInt(2),
    	})
    	if err == nil {
    		t.Errorf("expected error, got MarshalPKIXPublicKey success")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  6. src/crypto/tls/tls_test.go

    			SupportedPoints:   []uint8{pointFormatUncompressed},
    			SignatureSchemes:  []SignatureScheme{ECDSAWithP256AndSHA256},
    			SupportedVersions: []uint16{VersionTLS12},
    		}, "certificate curve"},
    		{ecdsaCert, &ClientHelloInfo{
    			CipherSuites:      []uint16{TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256},
    			SupportedCurves:   []CurveID{CurveP256},
    			SupportedPoints:   []uint8{1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256_asm_amd64.s

    //go:build !purego
    
    // This file contains constant-time, 64-bit assembly implementation of
    // P256. The optimizations performed here are described in detail in:
    // S.Gueron and V.Krasnov, "Fast prime field elliptic-curve cryptography with
    //                          256-bit primes"
    // https://link.springer.com/article/10.1007%2Fs13389-014-0090-x
    // https://eprint.iacr.org/2013/816.pdf
    
    #include "textflag.h"
    
    #define res_ptr DI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client_test.go

    	// See https://www.rfc-editor.org/rfc/rfc8446#page-14.
    	if version == VersionTLS13 {
    		deleteTicket()
    		serverConfig = &Config{
    			// Use a different curve than the client to force a HelloRetryRequest.
    			CurvePreferences: []CurveID{CurveP521, CurveP384, CurveP256},
    			MaxVersion:       version,
    			Certificates:     testConfig.Certificates,
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*PrivateKey).Bytes", Method, 20},
    		{"(*PrivateKey).Curve", Method, 20},
    		{"(*PrivateKey).ECDH", Method, 20},
    		{"(*PrivateKey).Equal", Method, 20},
    		{"(*PrivateKey).Public", Method, 20},
    		{"(*PrivateKey).PublicKey", Method, 20},
    		{"(*PublicKey).Bytes", Method, 20},
    		{"(*PublicKey).Curve", Method, 20},
    		{"(*PublicKey).Equal", Method, 20},
    		{"Curve", Type, 20},
    		{"P256", Func, 20},
    		{"P384", Func, 20},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  10. samples/addons/grafana.yaml

    Istio main components cost in terms of resources utilization under steady load.\n\n- **vCPU / 1k rps:** shows vCPU utilization by the main Istio components normalized by 1000 requests/second. When idle or low traffic, this chart will be blank. The curve for istio-proxy refers to the services sidecars only.\n- **vCPU:** vCPU utilization by Istio components, not normalized.\n- **Memory:** memory footprint for the components. Telemetry and policy are normalized by 1k rps, and no data is shown  when there...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
Back to top