Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isSupportedSignatureAlgorithm (0.19 sec)

  1. src/crypto/tls/common.go

    func supportedSignatureAlgorithms() []SignatureScheme {
    	if !needFIPS() {
    		return defaultSupportedSignatureAlgorithms
    	}
    	return defaultSupportedSignatureAlgorithmsFIPS
    }
    
    func isSupportedSignatureAlgorithm(sigAlg SignatureScheme, supportedSignatureAlgorithms []SignatureScheme) bool {
    	for _, s := range supportedSignatureAlgorithms {
    		if s == sigAlg {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
Back to top