Documentation ¶
Overview ¶
Package keytransparency_v1_service is a generated protocol buffer package.
Key Transparency Service ¶
The Key Transparency Service API consists of a map of user names to public keys. Each user name also has a history of public keys that have been associated with it.
It is generated from these files:
keytransparency_v1_service.proto
It has these top-level messages:
Package keytransparency_v1_service is a reverse proxy.
It translates gRPC into RESTful JSON APIs.
Index ¶
- func RegisterKeyTransparencyServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error
- func RegisterKeyTransparencyServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, ...) (err error)
- func RegisterKeyTransparencyServiceServer(s *grpc.Server, srv KeyTransparencyServiceServer)
- type KeyTransparencyServiceClient
- type KeyTransparencyServiceServer
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func RegisterKeyTransparencyServiceHandler ¶
func RegisterKeyTransparencyServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error
RegisterKeyTransparencyServiceHandler registers the http handlers for service KeyTransparencyService to "mux". The handlers forward requests to the grpc endpoint over "conn".
func RegisterKeyTransparencyServiceHandlerFromEndpoint ¶
func RegisterKeyTransparencyServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)
RegisterKeyTransparencyServiceHandlerFromEndpoint is same as RegisterKeyTransparencyServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.
func RegisterKeyTransparencyServiceServer ¶
func RegisterKeyTransparencyServiceServer(s *grpc.Server, srv KeyTransparencyServiceServer)
Types ¶
type KeyTransparencyServiceClient ¶
type KeyTransparencyServiceClient interface { // GetEntry returns a user's entry in the Merkle Tree. // // Entries contain signed commitments to a profile, which is also returned. GetEntry(ctx context.Context, in *keytransparency_v1_types.GetEntryRequest, opts ...grpc.CallOption) (*keytransparency_v1_types.GetEntryResponse, error) // ListEntryHistory returns a list of historic GetEntry values. // // Clients verify their account history by observing correct values for their // account over time. ListEntryHistory(ctx context.Context, in *keytransparency_v1_types.ListEntryHistoryRequest, opts ...grpc.CallOption) (*keytransparency_v1_types.ListEntryHistoryResponse, error) // UpdateEntry updates a user's profile. // // Returns the current user profile. // Clients must retry until this function returns a proof containing the desired value. UpdateEntry(ctx context.Context, in *keytransparency_v1_types.UpdateEntryRequest, opts ...grpc.CallOption) (*keytransparency_v1_types.UpdateEntryResponse, error) }
func NewKeyTransparencyServiceClient ¶
func NewKeyTransparencyServiceClient(cc *grpc.ClientConn) KeyTransparencyServiceClient
type KeyTransparencyServiceServer ¶
type KeyTransparencyServiceServer interface { // GetEntry returns a user's entry in the Merkle Tree. // // Entries contain signed commitments to a profile, which is also returned. GetEntry(context.Context, *keytransparency_v1_types.GetEntryRequest) (*keytransparency_v1_types.GetEntryResponse, error) // ListEntryHistory returns a list of historic GetEntry values. // // Clients verify their account history by observing correct values for their // account over time. ListEntryHistory(context.Context, *keytransparency_v1_types.ListEntryHistoryRequest) (*keytransparency_v1_types.ListEntryHistoryResponse, error) // UpdateEntry updates a user's profile. // // Returns the current user profile. // Clients must retry until this function returns a proof containing the desired value. UpdateEntry(context.Context, *keytransparency_v1_types.UpdateEntryRequest) (*keytransparency_v1_types.UpdateEntryResponse, error) }