chore: adjustments to comments for things found while implementing Storage

This commit is contained in:
David Sharnoff 2022-09-29 22:18:08 -07:00 committed by GitHub
parent 98851d4ca6
commit 0d721d937e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 2 deletions

View file

@ -248,6 +248,8 @@ func WithClientKey(path string) Option {
}
// WithJWTProfile creates a signer used for the JWT Profile Client Authentication on the token endpoint
// When creating the signer, be sure to include the KeyID in the SigningKey.
// See client.NewSignerFromPrivateKeyByte for an example.
func WithJWTProfile(signerFromKey SignerFromKey) Option {
return func(rp *relyingParty) error {
signer, err := signerFromKey()