mirror of
https://github.com/outbackdingo/certificates.git
synced 2026-01-27 10:18:34 +00:00
Fix typos.
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user