storj/storagenode/trust/certdb.go
Egon Elbre 05d148aeb5
Storage node and upload/download protocol refactor (#1422)
refactor storage node server
refactor upload and download protocol
2019-03-18 12:55:06 +02:00

17 lines
382 B
Go

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
package trust
import (
"context"
"storj.io/storj/pkg/identity"
)
// CertDB is a database of peer identities.
type CertDB interface {
Include(ctx context.Context, pi *identity.PeerIdentity) (certid int64, err error)
LookupByCertID(ctx context.Context, id int64) (*identity.PeerIdentity, error)
}