Documentation ¶
Index ¶
- func New(version string) func() provider.Provider
- func NewBase32DecodeFunction() function.Function
- func NewBase32EncodeFunction() function.Function
- func NewEd25519PrivateFunction() function.Function
- func NewEd25519PublicFunction() function.Function
- func NewEd25519SignFunction() function.Function
- func NewEd25519VerifyFunction() function.Function
- type Base32DecodeFunction
- type Base32EncodeFunction
- type CryptoProvider
- func (p *CryptoProvider) Configure(ctx context.Context, req provider.ConfigureRequest, ...)
- func (p *CryptoProvider) DataSources(ctx context.Context) []func() datasource.DataSource
- func (p *CryptoProvider) Functions(ctx context.Context) []func() function.Function
- func (p *CryptoProvider) Metadata(ctx context.Context, req provider.MetadataRequest, ...)
- func (p *CryptoProvider) Resources(ctx context.Context) []func() resource.Resource
- func (p *CryptoProvider) Schema(ctx context.Context, req provider.SchemaRequest, resp *provider.SchemaResponse)
- type CryptoProviderModel
- type Ed25519PrivateFunction
- func (r Ed25519PrivateFunction) Definition(_ context.Context, _ function.DefinitionRequest, ...)
- func (r Ed25519PrivateFunction) Metadata(_ context.Context, req function.MetadataRequest, ...)
- func (r Ed25519PrivateFunction) Run(ctx context.Context, req function.RunRequest, resp *function.RunResponse)
- type Ed25519PublicFunction
- type Ed25519SignFunction
- type Ed25519VerifyFunction
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewBase32DecodeFunction ¶
func NewBase32EncodeFunction ¶
func NewEd25519SignFunction ¶
Types ¶
type Base32DecodeFunction ¶
type Base32DecodeFunction struct{}
func (Base32DecodeFunction) Definition ¶
func (r Base32DecodeFunction) Definition(_ context.Context, _ function.DefinitionRequest, resp *function.DefinitionResponse)
func (Base32DecodeFunction) Metadata ¶
func (r Base32DecodeFunction) Metadata(_ context.Context, req function.MetadataRequest, resp *function.MetadataResponse)
func (Base32DecodeFunction) Run ¶
func (r Base32DecodeFunction) Run(ctx context.Context, req function.RunRequest, resp *function.RunResponse)
type Base32EncodeFunction ¶
type Base32EncodeFunction struct{}
func (Base32EncodeFunction) Definition ¶
func (r Base32EncodeFunction) Definition(_ context.Context, _ function.DefinitionRequest, resp *function.DefinitionResponse)
func (Base32EncodeFunction) Metadata ¶
func (r Base32EncodeFunction) Metadata(_ context.Context, req function.MetadataRequest, resp *function.MetadataResponse)
func (Base32EncodeFunction) Run ¶
func (r Base32EncodeFunction) Run(ctx context.Context, req function.RunRequest, resp *function.RunResponse)
type CryptoProvider ¶
type CryptoProvider struct {
// contains filtered or unexported fields
}
CryptoProvider defines the provider implementation.
func (*CryptoProvider) Configure ¶
func (p *CryptoProvider) Configure(ctx context.Context, req provider.ConfigureRequest, resp *provider.ConfigureResponse)
func (*CryptoProvider) DataSources ¶
func (p *CryptoProvider) DataSources(ctx context.Context) []func() datasource.DataSource
func (*CryptoProvider) Functions ¶
func (p *CryptoProvider) Functions(ctx context.Context) []func() function.Function
func (*CryptoProvider) Metadata ¶
func (p *CryptoProvider) Metadata(ctx context.Context, req provider.MetadataRequest, resp *provider.MetadataResponse)
func (*CryptoProvider) Resources ¶
func (p *CryptoProvider) Resources(ctx context.Context) []func() resource.Resource
func (*CryptoProvider) Schema ¶
func (p *CryptoProvider) Schema(ctx context.Context, req provider.SchemaRequest, resp *provider.SchemaResponse)
type CryptoProviderModel ¶
type CryptoProviderModel struct { }
CryptoProviderModel describes the provider data model.
type Ed25519PrivateFunction ¶
type Ed25519PrivateFunction struct{}
func (Ed25519PrivateFunction) Definition ¶
func (r Ed25519PrivateFunction) Definition(_ context.Context, _ function.DefinitionRequest, resp *function.DefinitionResponse)
func (Ed25519PrivateFunction) Metadata ¶
func (r Ed25519PrivateFunction) Metadata(_ context.Context, req function.MetadataRequest, resp *function.MetadataResponse)
func (Ed25519PrivateFunction) Run ¶
func (r Ed25519PrivateFunction) Run(ctx context.Context, req function.RunRequest, resp *function.RunResponse)
type Ed25519PublicFunction ¶
type Ed25519PublicFunction struct{}
func (Ed25519PublicFunction) Definition ¶
func (r Ed25519PublicFunction) Definition(_ context.Context, _ function.DefinitionRequest, resp *function.DefinitionResponse)
func (Ed25519PublicFunction) Metadata ¶
func (r Ed25519PublicFunction) Metadata(_ context.Context, req function.MetadataRequest, resp *function.MetadataResponse)
func (Ed25519PublicFunction) Run ¶
func (r Ed25519PublicFunction) Run(ctx context.Context, req function.RunRequest, resp *function.RunResponse)
type Ed25519SignFunction ¶
type Ed25519SignFunction struct{}
func (Ed25519SignFunction) Definition ¶
func (r Ed25519SignFunction) Definition(_ context.Context, _ function.DefinitionRequest, resp *function.DefinitionResponse)
func (Ed25519SignFunction) Metadata ¶
func (r Ed25519SignFunction) Metadata(_ context.Context, req function.MetadataRequest, resp *function.MetadataResponse)
func (Ed25519SignFunction) Run ¶
func (r Ed25519SignFunction) Run(ctx context.Context, req function.RunRequest, resp *function.RunResponse)
type Ed25519VerifyFunction ¶
type Ed25519VerifyFunction struct{}
func (Ed25519VerifyFunction) Definition ¶
func (r Ed25519VerifyFunction) Definition(_ context.Context, _ function.DefinitionRequest, resp *function.DefinitionResponse)
func (Ed25519VerifyFunction) Metadata ¶
func (r Ed25519VerifyFunction) Metadata(_ context.Context, req function.MetadataRequest, resp *function.MetadataResponse)
func (Ed25519VerifyFunction) Run ¶
func (r Ed25519VerifyFunction) Run(ctx context.Context, req function.RunRequest, resp *function.RunResponse)
Click to show internal directories.
Click to hide internal directories.