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#L162: ai.Parameters.Tag = int(tag)
parser.go#L163: ai.Parameters.FullBytes = params
parser.go#L245: if !bytes.Equal(keyData.Algorithm.Parameters.FullBytes, asn1.NullBytes) {
parser.go#L273: paramsDer := cryptobyte.String(keyData.Algorithm.Parameters.FullBytes)
parser.go#L295: if len(keyData.Algorithm.Parameters.FullBytes) != 0 {
parser.go#L315: paramsDer := cryptobyte.String(keyData.Algorithm.Parameters.FullBytes)
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#L85: publicKeyAlgorithm.Parameters = asn1.NullRawValue
x509.go#L98: publicKeyAlgorithm.Parameters.FullBytes = paramBytes
x509.go#L383: if len(ai.Parameters.FullBytes) != 0 {
x509.go#L401: if _, err := asn1.Unmarshal(ai.Parameters.FullBytes, ¶ms); err != nil {
x509.go#L406: if _, err := asn1.Unmarshal(params.MGF.Parameters.FullBytes, &mgf1HashFunc); err != nil {
x509.go#L415: if (len(params.Hash.Parameters.FullBytes) != 0 && !bytes.Equal(params.Hash.Parameters.FullBytes, asn1.NullBytes)) ||
x509.go#L418: (len(mgf1HashFunc.Parameters.FullBytes) != 0 && !bytes.Equal(mgf1HashFunc.Parameters.FullBytes, asn1.NullBytes)) ||
x509.go#L1368: sigAlgo.Parameters = asn1.NullRawValue
x509.go#L1416: sigAlgo.Parameters = hashToPSSParameters[hashFunc]