diff --git a/kms/pkcs11/pkcs11.go b/kms/pkcs11/pkcs11.go index 25b3d447..47c298a5 100644 --- a/kms/pkcs11/pkcs11.go +++ b/kms/pkcs11/pkcs11.go @@ -22,7 +22,7 @@ import ( // Scheme is the scheme used in uris. const Scheme = "pkcs11" -// DefaultRSASize is the number of bits of a new RSA key if not bitsize has been +// DefaultRSASize is the number of bits of a new RSA key if no size has been // specified. const DefaultRSASize = 3072 diff --git a/kms/uri/uri.go b/kms/uri/uri.go index 8e30a7c5..94009c47 100644 --- a/kms/uri/uri.go +++ b/kms/uri/uri.go @@ -83,7 +83,7 @@ func ParseWithScheme(scheme, rawuri string) (*URI, error) { return u, nil } -// Get returns the first value in the uri with the give n key, it will return +// Get returns the first value in the uri with the given key, it will return // empty string if that field is not present. func (u *URI) Get(key string) string { v := u.Values.Get(key) @@ -93,7 +93,7 @@ func (u *URI) Get(key string) string { return v } -// GetEncoded returns the first value in the uri with the give n key, it will +// GetEncoded returns the first value in the uri with the given key, it will // return empty nil if that field is not present or is empty. If the return // value is hex encoded it will decode it and return it. func (u *URI) GetEncoded(key string) []byte {