Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 131 for 8032 (0.03 sec)

  1. src/crypto/ed25519/ed25519.go

    // https://ed25519.cr.yp.to/.
    //
    // These functions are also compatible with the “Ed25519” function defined in
    // RFC 8032. However, unlike RFC 8032's formulation, this package's private key
    // representation includes a public key suffix to make multiple signing
    // operations with the same key more efficient. This package refers to the RFC
    // 8032 private key as the “seed”.
    //
    // Operations involving private keys are implemented using constant-time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. src/crypto/ed25519/ed25519vectors_test.go

    			// by the cofactor, so any low order residue will cause the
    			// signature not to verify.
    			//
    			// This is allowed, but not required, by RFC 8032.
    			case "LowOrderResidue":
    				expectedToVerify = false
    			// Our point decoding allows non-canonical encodings (in violation
    			// of RFC 8032) but R is not decoded: instead, R is recomputed and
    			// compared bytewise against the canonical encoding.
    			case "NonCanonicalR":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 25 14:52:51 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  3. src/crypto/internal/edwards25519/edwards25519.go

    func NewIdentityPoint() *Point {
    	return new(Point).Set(identity)
    }
    
    // generator is the canonical curve basepoint. See TestGenerator for the
    // correspondence of this encoding with the values in RFC 8032.
    var generator, _ = new(Point).SetBytes([]byte{
    	0x58, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66,
    	0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66,
    	0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 13 19:21:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. src/crypto/internal/edwards25519/scalar.go

    		case s[i] > scalarMinusOneBytes[i]:
    			return false
    		case s[i] < scalarMinusOneBytes[i]:
    			return true
    		}
    	}
    	return true
    }
    
    // SetBytesWithClamping applies the buffer pruning described in RFC 8032,
    // Section 5.1.5 (also known as clamping) and sets s to the result. The input
    // must be 32 bytes, and it is not modified. If x is not of the right length,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. src/crypto/ed25519/ed25519_test.go

    	}
    
    	wrongMessage := []byte("wrong message")
    	if Verify(public, wrongMessage, sig) {
    		t.Errorf("signature of different message accepted")
    	}
    }
    
    func TestSignVerifyHashed(t *testing.T) {
    	// From RFC 8032, Section 7.3
    	key, _ := hex.DecodeString("833fe62409237b9d62ec77587520911e9a759cec1d19755b7da901b96dca3d42ec172b93ad5e563bf4932c70e1245034c35467ef2efd4d64ebf819683467e2bf")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. src/crypto/internal/edwards25519/edwards25519_test.go

    		if lhs.Equal(&rhs) != 1 {
    			t.Errorf("point %d is not valid\nX = %v\nY = %v\nZ = %v", i, p.x, p.y, p.z)
    		}
    	}
    }
    
    func TestGenerator(t *testing.T) {
    	// These are the coordinates of B from RFC 8032, Section 5.1, converted to
    	// little endian hex.
    	x := "1ad5258f602d56c9b2a7259560c72c695cdcd6fd31e2a4c0fe536ecdd3366921"
    	y := "5866666666666666666666666666666666666666666666666666666666666666"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/field/fe.go

    //
    // Consistent with RFC 7748, the most significant bit (the high bit of the
    // last byte) is ignored, and non-canonical values (2^255-19 through 2^255-1)
    // are accepted. Note that this is laxer than specified by RFC 8032, but
    // consistent with most Ed25519 implementations.
    func (v *Element) SetBytes(x []byte) (*Element, error) {
    	if len(x) != 32 {
    		return nil, errors.New("edwards25519: invalid field element input size")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. pilot/pkg/model/sidecar_test.go

    	}
    
    	port803x = []*Port{
    		{
    			Port:     8031,
    			Protocol: "TCP",
    			Name:     "tcp-1",
    		},
    		{
    			Port:     8032,
    			Protocol: "TCP",
    			Name:     "tcp-2",
    		},
    		{
    			Port:     8033,
    			Protocol: "TCP",
    			Name:     "tcp-3",
    		},
    		{
    			Port:     8034,
    			Protocol: "TCP",
    			Name:     "tcp-4",
    		},
    		{
    			Port:     8035,
    			Protocol: "TCP",
    			Name:     "tcp-5",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/gateway-custom-ingressgateway-svcselector.yaml

      - port:
          number: 8002
          name: http2
          protocol: HTTP
        hosts:
        - "*"
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        myapp: ingressgateway-8001
      name: my-ingressgateway-8001
    spec:
      containers:
        - args:
          name: istio-proxy
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        myapp: ingressgateway-8002
      name: my-ingressgateway-8002
    spec:
      containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  10. samples/health-check/server.go

    	go func() {
    		http.ListenAndServe(":8002", server8002)
    	}()
    
    	<-finish
    }
    
    func foo8001(w http.ResponseWriter, _ *http.Request) {
    	w.Write([]byte("Listening on 8001: foo "))
    }
    
    func bar8001(w http.ResponseWriter, _ *http.Request) {
    	w.Write([]byte("Listening on 8001: bar "))
    }
    
    func foo8002(w http.ResponseWriter, _ *http.Request) {
    	w.Write([]byte("Listening on 8002: foo "))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 1.4K bytes
    - Viewed (0)
Back to top