package postgresql

import "github.com/google/certificate-transparency-go/trillian/ctfe/storage/postgresql"

Package postgresql defines the IssuanceChainStorage type, which implements IssuanceChainStorage interface with FindByKey and Add methods.

Index

Types

type IssuanceChainStorage

type IssuanceChainStorage struct {
	// contains filtered or unexported fields
}

IssuanceChainStorage is a PostgreSQL implementation of the IssuanceChainStorage interface.

func NewIssuanceChainStorage

func NewIssuanceChainStorage(_ context.Context, dbConn string) *IssuanceChainStorage

NewIssuanceChainStorage takes the database connection string as the input and return the IssuanceChainStorage.

func (*IssuanceChainStorage) Add

func (s *IssuanceChainStorage) Add(ctx context.Context, key []byte, chain []byte) error

Add inserts the key-value pair of issuance chain.

func (*IssuanceChainStorage) FindByKey

func (s *IssuanceChainStorage) FindByKey(ctx context.Context, key []byte) ([]byte, error)

FindByKey returns the key-value pair of issuance chain by the key.

Source Files

postgresql.go

Version
v1.3.1 (latest)
Published
Jan 15, 2025
Platform
linux/amd64
Imports
9 packages
Last checked
19 minutes ago

Tools for package owners.