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

22 uses

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

	crypto/x509
		parser.go#L164: 	ai.Parameters.Tag = int(tag)
		parser.go#L165: 	ai.Parameters.FullBytes = params
		parser.go#L219: 	params := keyData.Algorithm.Parameters
		pkcs8.go#L55: 		bytes := privKey.Algo.Parameters.FullBytes
		pkcs8.go#L67: 		if l := len(privKey.Algo.Parameters.FullBytes); l != 0 {
		pkcs8.go#L80: 		if l := len(privKey.Algo.Parameters.FullBytes); l != 0 {
		pkcs8.go#L108: 			Parameters: asn1.NullRawValue,
		pkcs8.go#L123: 			Parameters: asn1.RawValue{
		pkcs8.go#L161: 				Parameters: asn1.RawValue{
		x509.go#L97: 		publicKeyAlgorithm.Parameters = asn1.NullRawValue
		x509.go#L113: 		publicKeyAlgorithm.Parameters.FullBytes = paramBytes
		x509.go#L132: 			publicKeyAlgorithm.Parameters.FullBytes = paramBytes
		x509.go#L410: 		if len(ai.Parameters.FullBytes) != 0 {
		x509.go#L428: 	if _, err := asn1.Unmarshal(ai.Parameters.FullBytes, &params); err != nil {
		x509.go#L433: 	if _, err := asn1.Unmarshal(params.MGF.Parameters.FullBytes, &mgf1HashFunc); err != nil {
		x509.go#L442: 	if (len(params.Hash.Parameters.FullBytes) != 0 && !bytes.Equal(params.Hash.Parameters.FullBytes, asn1.NullBytes)) ||
		x509.go#L445: 		(len(mgf1HashFunc.Parameters.FullBytes) != 0 && !bytes.Equal(mgf1HashFunc.Parameters.FullBytes, asn1.NullBytes)) ||
		x509.go#L1416: 		sigAlgo.Parameters = asn1.NullRawValue
		x509.go#L1468: 				sigAlgo.Parameters = hashToPSSParameters[hashFunc]