Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for AlgorithmIdentifier (0.18 sec)

  1. src/crypto/x509/parser.go

    			}
    			rdnSet = append(rdnSet, attr)
    		}
    
    		rdnSeq = append(rdnSeq, rdnSet)
    	}
    
    	return &rdnSeq, nil
    }
    
    func parseAI(der cryptobyte.String) (pkix.AlgorithmIdentifier, error) {
    	ai := pkix.AlgorithmIdentifier{}
    	if !der.ReadASN1ObjectIdentifier(&ai.Algorithm) {
    		return ai, errors.New("x509: malformed OID")
    	}
    	if der.Empty() {
    		return ai, nil
    	}
    	var params cryptobyte.String
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  2. src/crypto/x509/x509_test.go

    		}
    
    		params := pssParameters{
    			Hash: pkix.AlgorithmIdentifier{
    				Algorithm:  hashOID,
    				Parameters: asn1.NullRawValue,
    			},
    			MGF: pkix.AlgorithmIdentifier{
    				Algorithm: oidMGF1,
    			},
    			SaltLength:   hashFunc.Size(),
    			TrailerField: 1,
    		}
    
    		mgf1Params := pkix.AlgorithmIdentifier{
    			Algorithm:  hashOID,
    			Parameters: asn1.NullRawValue,
    		}
    
    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

    		{"(*Name).FillFromRDNSequence", Method, 0},
    		{"(Name).String", Method, 10},
    		{"(Name).ToRDNSequence", Method, 0},
    		{"(RDNSequence).String", Method, 10},
    		{"AlgorithmIdentifier", Type, 0},
    		{"AlgorithmIdentifier.Algorithm", Field, 0},
    		{"AlgorithmIdentifier.Parameters", Field, 0},
    		{"AttributeTypeAndValue", Type, 0},
    		{"AttributeTypeAndValue.Type", Field, 0},
    		{"AttributeTypeAndValue.Value", 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)
  4. api/go1.txt

    pkg crypto/x509/pkix, method (Name) ToRDNSequence() RDNSequence
    pkg crypto/x509/pkix, type AlgorithmIdentifier struct
    pkg crypto/x509/pkix, type AlgorithmIdentifier struct, Algorithm asn1.ObjectIdentifier
    pkg crypto/x509/pkix, type AlgorithmIdentifier struct, Parameters asn1.RawValue
    pkg crypto/x509/pkix, type AttributeTypeAndValue struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top