Searched refs:sigAlgs (Results 1 – 4 of 4) sorted by relevance
113 static final ASN1ObjectIdentifier sigAlgs = nistAlgorithm.branch("3"); field115 static final ASN1ObjectIdentifier id_dsa_with_sha2 = sigAlgs;118 static final ASN1ObjectIdentifier dsa_with_sha224 = sigAlgs.branch("1");120 static final ASN1ObjectIdentifier dsa_with_sha256 = sigAlgs.branch("2");122 static final ASN1ObjectIdentifier dsa_with_sha384 = sigAlgs.branch("3");124 static final ASN1ObjectIdentifier dsa_with_sha512 = sigAlgs.branch("4");126 static final ASN1ObjectIdentifier id_dsa_with_sha3_224 = sigAlgs.branch("5");128 static final ASN1ObjectIdentifier id_dsa_with_sha3_256 = sigAlgs.branch("6");130 static final ASN1ObjectIdentifier id_dsa_with_sha3_384 = sigAlgs.branch("7");132 static final ASN1ObjectIdentifier id_dsa_with_sha3_512 = sigAlgs.branch("8");[all …]
115 static final ASN1ObjectIdentifier sigAlgs = nistAlgorithm.branch("3"); field117 static final ASN1ObjectIdentifier id_dsa_with_sha2 = sigAlgs;120 static final ASN1ObjectIdentifier dsa_with_sha224 = sigAlgs.branch("1");122 static final ASN1ObjectIdentifier dsa_with_sha256 = sigAlgs.branch("2");124 static final ASN1ObjectIdentifier dsa_with_sha384 = sigAlgs.branch("3");126 static final ASN1ObjectIdentifier dsa_with_sha512 = sigAlgs.branch("4");128 static final ASN1ObjectIdentifier id_dsa_with_sha3_224 = sigAlgs.branch("5");130 static final ASN1ObjectIdentifier id_dsa_with_sha3_256 = sigAlgs.branch("6");132 static final ASN1ObjectIdentifier id_dsa_with_sha3_384 = sigAlgs.branch("7");134 static final ASN1ObjectIdentifier id_dsa_with_sha3_512 = sigAlgs.branch("8");[all …]
2054 func isSupportedSignatureAlgorithm(sigAlg signatureAlgorithm, sigAlgs []signatureAlgorithm) bool {2055 for _, s := range sigAlgs {2081 func checkRSAPSSSupport(support RSAPSSSupport, sigAlgs, sigAlgsCert []signatureAlgorithm) error { argument2083 sigAlgsCert = sigAlgs2084 } else if eqSignatureAlgorithms(sigAlgs, sigAlgsCert) {2094 for _, sigAlg := range sigAlgs {
644 var sigAlgs byteReader645 if !reader.readU16LengthPrefixed(&sigAlgs) {648 if !allowEmpty && len(sigAlgs) == 0 {651 *out = make([]signatureAlgorithm, 0, len(sigAlgs)/2)652 for len(sigAlgs) > 0 {654 if !sigAlgs.readU16(&v) {