Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(148)

Unified Diff: appengine/gaeauth/server/db.go

Issue 2386643003: auth: Make luci-go services trust signatures produced by the token server. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | server/auth/auth.go » ('j') | server/auth/auth_test.go » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/gaeauth/server/db.go
diff --git a/appengine/gaeauth/server/db.go b/appengine/gaeauth/server/db.go
index e0e2e8f9ee03f34dc5ad3ff7f117debec13320ed..035984651dcc203af395fa62d6274f5bc54d8e3b 100644
--- a/appengine/gaeauth/server/db.go
+++ b/appengine/gaeauth/server/db.go
@@ -16,6 +16,7 @@ import (
"github.com/luci/luci-go/common/logging"
"github.com/luci/luci-go/server/auth/authdb"
"github.com/luci/luci-go/server/auth/identity"
+ "github.com/luci/luci-go/server/auth/signing"
"github.com/luci/luci-go/server/secrets"
)
@@ -98,6 +99,10 @@ func (devServerDB) SharedSecrets(c context.Context) (secrets.Store, error) {
return nil, errNotConfigured
}
+func (devServerDB) GetCertificates(c context.Context, id identity.Identity) (*signing.PublicCertificates, error) {
+ return nil, errNotConfigured
+}
+
func (devServerDB) GetWhitelistForIdentity(c context.Context, ident identity.Identity) (string, error) {
return "", nil
}
« no previous file with comments | « no previous file | server/auth/auth.go » ('j') | server/auth/auth_test.go » ('J')

Powered by Google App Engine
This is Rietveld 408576698