From 36aeaec0b6a04edf7887ecc57393ce2962a6e39c Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 26 Dec 2018 14:46:37 -0500 Subject: first pass at precertificate support --- bin-src/util/oid.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 bin-src/util/oid.go (limited to 'bin-src/util') diff --git a/bin-src/util/oid.go b/bin-src/util/oid.go new file mode 100644 index 0000000..b9fee4c --- /dev/null +++ b/bin-src/util/oid.go @@ -0,0 +1,10 @@ +package util + +import ( + "encoding/asn1" +) + +var ( + OID_RFC6962_SCTs = asn1.ObjectIdentifier{1, 3, 6, 1, 4, 1, 11129, 2, 4, 2} + OID_RFC6962_Poison = asn1.ObjectIdentifier{1, 3, 6, 1, 4, 1, 11129, 2, 4, 3} +) -- cgit v1.2.3-2-g168b