import "go.chromium.org/luci/server/auth/signing/signingtest"
Package signingtest implements signing.Signer interface using small random keys.
Useful in unit tests.
type Signer struct {
// contains filtered or unexported fields
}
Signer holds private key and corresponding cert and can sign blobs with PKCS1v15.
func NewSigner(serviceInfo *signing.ServiceInfo) *Signer
NewSigner returns Signer instance that use small random key.
Panics on errors.
Certificates returns a bundle with public certificates for all active keys.
func (s *Signer) KeyForTest() *rsa.PrivateKey
KeyForTest returns the RSA key used internally by the test signer.
It is not part of the signing.Signer interface. It should be used only from tests.
KeyNameForTest returns an ID of the signing key.
ServiceInfo returns information about the current service.
It includes app ID and the service account name (that ultimately owns the signing private key).
func (s *Signer) SignBytes(c context.Context, blob []byte) (keyName string, signature []byte, err error)
SignBytes signs the blob with some active private key. Returns the signature and name of the key used.
Package signingtest imports 11 packages (graph). Updated 2021-01-21. Refresh now. Tools for package owners.