Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SupportedSignatureAlgorithms (0.38 sec)

  1. src/crypto/tls/handshake_messages.go

    			return false
    		}
    		if len(data) < int(sigAndHashLen) {
    			return false
    		}
    		numSigAlgos := sigAndHashLen / 2
    		m.supportedSignatureAlgorithms = make([]SignatureScheme, numSigAlgos)
    		for i := range m.supportedSignatureAlgorithms {
    			m.supportedSignatureAlgorithms[i] = SignatureScheme(data[0])<<8 | SignatureScheme(data[1])
    			data = data[2:]
    		}
    	}
    
    	if len(data) < 2 {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/crypto/tls/common.go

    }
    
    // supportedSignatureAlgorithms returns the supported signature algorithms.
    func supportedSignatureAlgorithms() []SignatureScheme {
    	if !needFIPS() {
    		return defaultSupportedSignatureAlgorithms
    	}
    	return defaultSupportedSignatureAlgorithmsFIPS
    }
    
    func isSupportedSignatureAlgorithm(sigAlg SignatureScheme, supportedSignatureAlgorithms []SignatureScheme) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  3. src/crypto/tls/tls_test.go

    		PrivateKey:  testRSAPrivateKey,
    	}
    	pkcs1Cert := &Certificate{
    		Certificate:                  [][]byte{testRSACertificate},
    		PrivateKey:                   testRSAPrivateKey,
    		SupportedSignatureAlgorithms: []SignatureScheme{PKCS1WithSHA1, PKCS1WithSHA256},
    	}
    	ecdsaCert := &Certificate{
    		// ECDSA P-256 certificate
    		Certificate: [][]byte{testP256Certificate},
    		PrivateKey:  testP256PrivateKey,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
Back to top