Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for UnknownSignatureAlgorithm (0.52 sec)

  1. src/crypto/x509/x509.go

    		if len(ai.Parameters.FullBytes) != 0 {
    			return UnknownSignatureAlgorithm
    		}
    	}
    
    	if !ai.Algorithm.Equal(oidSignatureRSAPSS) {
    		for _, details := range signatureAlgorithmDetails {
    			if ai.Algorithm.Equal(details.oid) {
    				return details.algo
    			}
    		}
    		return UnknownSignatureAlgorithm
    	}
    
    	// RSA PSS is special because it encodes important parameters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
Back to top