Skip to content

Commit 86ce3cb

Browse files
jason-bakerFiloSottile
authored andcommitted
acme/autocert: fix TLS-ALPN identifier in tests
CL 204177 broke autocert tests because they expected the old OID. Fixes golang/go#37160 Change-Id: Id732d4d249bbe5107fa0a3ba4829012600d8a52d GitHub-Last-Rev: 77e8d1f GitHub-Pull-Request: #117 Reviewed-on: https://go-review.googlesource.com/c/crypto/+/218941 Reviewed-by: Filippo Valsorda <filippo@golang.org> Run-TryBot: Filippo Valsorda <filippo@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
1 parent 6ca56c2 commit 86ce3cb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

acme/autocert/autocert_test.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -488,9 +488,8 @@ func startACMEServerStub(t *testing.T, tokenCert getCertificateFunc, domain stri
488488
if err := crt.VerifyHostname(domain); err != nil {
489489
t.Errorf("verifyTokenCert: %v", err)
490490
}
491-
// TODO: Update OID to the latest value 1.3.6.1.5.5.7.1.31
492491
// See https://tools.ietf.org/html/draft-ietf-acme-tls-alpn-05#section-5.1
493-
oid := asn1.ObjectIdentifier{1, 3, 6, 1, 5, 5, 7, 1, 30, 1}
492+
oid := asn1.ObjectIdentifier{1, 3, 6, 1, 5, 5, 7, 1, 31}
494493
for _, x := range crt.Extensions {
495494
if x.Id.Equal(oid) {
496495
// No need to check the extension value here.

0 commit comments

Comments
 (0)