From 8846cbcbd95ab3230cb105d2d8131dd55f1c9ad4 Mon Sep 17 00:00:00 2001 From: Andrew Ayer Date: Sat, 4 Feb 2017 16:04:00 -0800 Subject: [PATCH] Add OpenLogs array, for logs with open submission policies --- logs.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/logs.go b/logs.go index 0746827..4e1b999 100644 --- a/logs.go +++ b/logs.go @@ -128,6 +128,20 @@ var UnderwaterLogs = []LogInfo{ }, } +// Logs which accept submissions from anyone +var OpenLogs = []LogInfo{ + { + Key: mustDecodeBase64("MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfahLEimAoz2t01p3uMziiLOl/fHTDM0YDOhBRuiBARsV4UvxG2LdNgoIGLrtCzWE0J5APC2em4JlvR8EEEFMoA=="), + Url: "ct.googleapis.com/pilot", + MMD: 86400, + }, + { + Key: mustDecodeBase64("MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIFsYyDzBi7MxCAC/oJBXK7dHjG+1aLCOkHjpoHPqTyghLpzA9BYbqvnV16mAw04vUjyYASVGJCUoI3ctBcJAeg=="), + Url: "ct.googleapis.com/rocketeer", + MMD: 86400, + }, +} + func mustDecodeBase64(str string) []byte { bytes, err := base64.StdEncoding.DecodeString(str) if err != nil {