Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 82 for 8032 (0.04 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. cmd/testdata/config/invalid.yaml

    options:
      ftp: # settings for MinIO to act as an ftp server
            address: ':8021'
            passive-port-range: '30000-40000'
      sftp: # settings for MinIO to act as an sftp server
            address: ':8022'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Dec 07 09:33:56 UTC 2023
    - 866 bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/nodeports/node_ports_test.go

    		{
    			pod1: st.MakePod().ContainerPort([]v1.ContainerPort{
    				{
    					ContainerPort: 8001,
    					HostPort:      8001,
    					Protocol:      v1.ProtocolTCP,
    				},
    				{
    					ContainerPort: 8002,
    					HostPort:      8002,
    					Protocol:      v1.ProtocolTCP,
    				}}).ContainerPort([]v1.ContainerPort{
    				{
    					ContainerPort: 8003,
    					HostPort:      8003,
    					Protocol:      v1.ProtocolTCP,
    				},
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 11:02:11 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  8. cmd/testdata/config/1.yaml

    options:
      ftp: # settings for MinIO to act as an ftp server
            address: ':8021'
            passive-port-range: '30000-40000'
      sftp: # settings for MinIO to act as an sftp server
            address: ':8022'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Dec 07 09:33:56 UTC 2023
    - 881 bytes
    - Viewed (0)
  9. cmd/testdata/config/2.yaml

    options:
      ftp: # settings for MinIO to act as an ftp server
            address: ':8021'
            passive-port-range: '30000-40000'
      sftp: # settings for MinIO to act as an sftp server
            address: ':8022'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Dec 07 09:33:56 UTC 2023
    - 869 bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/security/get-current-user.md

    And all these thousands of *path operations* can be as small as 3 lines:
    
    === "Python 3.10+"
    
        ```Python hl_lines="30-32"
        {!> ../../../docs_src/security/tutorial002_an_py310.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="30-32"
        {!> ../../../docs_src/security/tutorial002_an_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="31-33"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top