Documentation ¶
Overview ¶
Package credentials implements various credentials supported by gRPC library, which encapsulate all the state needed by a client to authenticate with a server and make various assertions, e.g., about the client's identity, role, or whether it is authorized to make a particular call.
Index ¶
- type Credentials
- type TokenSource
- type TransportAuthenticator
- func NewClientTLSFromCert(cp *x509.CertPool, serverName string) TransportAuthenticator
- func NewClientTLSFromFile(certFile, serverName string) (TransportAuthenticator, error)
- func NewServerTLSFromCert(cert *tls.Certificate) TransportAuthenticator
- func NewServerTLSFromFile(certFile, keyFile string) (TransportAuthenticator, error)
- func NewTLS(c *tls.Config) TransportAuthenticator
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Credentials ¶
type Credentials interface { // GetRequestMetadata gets the current request metadata, refreshing // tokens if required. This should be called by the transport layer on // each request, and the data should be populated in headers or other // context. When supported by the underlying implementation, ctx can // be used for timeout and cancellation. // TODO(zhaoq): Define the set of the qualified keys instead of leaving // it as an arbitrary string. GetRequestMetadata(ctx context.Context) (map[string]string, error) }
Credentials defines the common interface all supported credentials must implement.
func NewApplicationDefault ¶
func NewApplicationDefault(ctx context.Context, scope ...string) (Credentials, error)
NewApplicationDefault returns "Application Default Credentials". For more detail, see https://developers.google.com/accounts/docs/application-default-credentials.
func NewComputeEngine ¶
func NewComputeEngine() Credentials
NewComputeEngine constructs the credentials that fetches access tokens from Google Compute Engine (GCE)'s metadata server. It is only valid to use this if your program is running on a GCE instance. TODO(dsymonds): Deprecate and remove this.
func NewServiceAccountFromFile ¶
func NewServiceAccountFromFile(keyFile string, scope ...string) (Credentials, error)
NewServiceAccountFromFile constructs the credentials using the JSON key file of a Google Developers service account.
func NewServiceAccountFromKey ¶
func NewServiceAccountFromKey(jsonKey []byte, scope ...string) (Credentials, error)
NewServiceAccountFromKey constructs the credentials using the JSON key slice from a Google Developers service account.
type TokenSource ¶
type TokenSource struct {
oauth2.TokenSource
}
TokenSource supplies credentials from an oauth2.TokenSource.
func (TokenSource) GetRequestMetadata ¶
type TransportAuthenticator ¶
type TransportAuthenticator interface { // Handshake does the authentication handshake specified by the corresponding // authentication protocol on rawConn. Handshake(addr string, rawConn net.Conn, timeout time.Duration) (net.Conn, error) // NewListener creates a listener which accepts connections with requested // authentication handshake. NewListener(lis net.Listener) net.Listener Credentials }
TransportAuthenticator defines the common interface all supported transport authentication protocols (e.g., TLS, SSL) must implement.
func NewClientTLSFromCert ¶
func NewClientTLSFromCert(cp *x509.CertPool, serverName string) TransportAuthenticator
NewClientTLSFromCert constructs a TLS from the input certificate for client.
func NewClientTLSFromFile ¶
func NewClientTLSFromFile(certFile, serverName string) (TransportAuthenticator, error)
NewClientTLSFromFile constructs a TLS from the input certificate file for client.
func NewServerTLSFromCert ¶
func NewServerTLSFromCert(cert *tls.Certificate) TransportAuthenticator
NewServerTLSFromCert constructs a TLS from the input certificate for server.
func NewServerTLSFromFile ¶
func NewServerTLSFromFile(certFile, keyFile string) (TransportAuthenticator, error)
NewServerTLSFromFile constructs a TLS from the input certificate file and key file for server.
func NewTLS ¶
func NewTLS(c *tls.Config) TransportAuthenticator
NewTLS uses c to construct a TransportAuthenticator based on TLS.