Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for UnknownSignatureAlgorithm (0.46 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)
  2. src/crypto/x509/x509_test.go

    	block, _ := pem.Decode([]byte(certISOOID))
    	if cert, err := ParseCertificate(block.Bytes); err != nil {
    		t.Errorf("certificate with ISO OID failed to parse: %s", err)
    	} else if cert.SignatureAlgorithm == UnknownSignatureAlgorithm {
    		t.Errorf("ISO OID not recognised in certificate")
    	}
    }
    
    // certMultipleRDN contains a RelativeDistinguishedName with two elements (the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"UnhandledCriticalExtension", Type, 0},
    		{"UnknownAuthorityError", Type, 0},
    		{"UnknownAuthorityError.Cert", Field, 8},
    		{"UnknownPublicKeyAlgorithm", Const, 0},
    		{"UnknownSignatureAlgorithm", Const, 0},
    		{"VerifyOptions", Type, 0},
    		{"VerifyOptions.CurrentTime", Field, 0},
    		{"VerifyOptions.DNSName", Field, 0},
    		{"VerifyOptions.Intermediates", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top