crypto/x509/pkix.AlgorithmIdentifier.Parameters (field)

20 uses

	crypto/x509/pkix (current package)
		pkix.go#L21: 	Parameters asn1.RawValue `asn1:"optional"`

	crypto/x509
		pkcs8.go#L53: 		bytes := privKey.Algo.Parameters.FullBytes
		pkcs8.go#L65: 		if l := len(privKey.Algo.Parameters.FullBytes); l != 0 {
		pkcs8.go#L95: 			Parameters: asn1.NullRawValue,
		pkcs8.go#L112: 			Parameters: asn1.RawValue{
		x509.go#L86: 		publicKeyAlgorithm.Parameters = asn1.NullRawValue
		x509.go#L99: 		publicKeyAlgorithm.Parameters.FullBytes = paramBytes
		x509.go#L384: 		if len(ai.Parameters.FullBytes) != 0 {
		x509.go#L402: 	if _, err := asn1.Unmarshal(ai.Parameters.FullBytes, ¶ms); err != nil {
		x509.go#L407: 	if _, err := asn1.Unmarshal(params.MGF.Parameters.FullBytes, &mgf1HashFunc); err != nil {
		x509.go#L416: 	if (len(params.Hash.Parameters.FullBytes) != 0 && !bytes.Equal(params.Hash.Parameters.FullBytes, asn1.NullBytes)) ||
		x509.go#L419: 		(len(mgf1HashFunc.Parameters.FullBytes) != 0 && !bytes.Equal(mgf1HashFunc.Parameters.FullBytes, asn1.NullBytes)) ||
		x509.go#L923: 		if !bytes.Equal(keyData.Algorithm.Parameters.FullBytes, asn1.NullBytes) {
		x509.go#L957: 		paramsData := keyData.Algorithm.Parameters.FullBytes
		x509.go#L979: 		paramsData := keyData.Algorithm.Parameters.FullBytes
		x509.go#L1005: 		if len(keyData.Algorithm.Parameters.FullBytes) != 0 {
		x509.go#L2022: 		sigAlgo.Parameters = asn1.NullRawValue
		x509.go#L2070: 				sigAlgo.Parameters = hashToPSSParameters[hashFunc]