diff options
author | Luke Shumaker <lukeshu@datawire.io> | 2018-12-26 14:46:37 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@datawire.io> | 2018-12-26 14:46:37 -0500 |
commit | 36aeaec0b6a04edf7887ecc57393ce2962a6e39c (patch) | |
tree | ae5299a0e3bfb4b59ef6abf5a8bc0095b6f6061f /bin-src/util | |
parent | 8c0133aeb36d6f384498986ed2cf4c67431f1d16 (diff) |
first pass at precertificate support
Diffstat (limited to 'bin-src/util')
-rw-r--r-- | bin-src/util/oid.go | 10 |
1 files changed, 10 insertions, 0 deletions
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} +) |