mcrypto: fix docs a bit

This commit is contained in:
Brian Picciano 2018-08-09 18:04:39 -06:00
parent e5d1802fa2
commit 362207b002

View File

@ -170,8 +170,7 @@ func Verify(v Verifier, s Signature, r io.Reader) error {
// VerifyBytes uses the Verifier to verify that the Signature is for the given // VerifyBytes uses the Verifier to verify that the Signature is for the given
// []bytes. // []bytes.
// //
// Returns any errors from io.Reader, or ErrInvalidSig (use merry.Is(err, // Returns ErrInvalidSig (use merry.Is(err, mcrypto.ErrInvalidSig) to check).
// mcrypto.ErrInvalidSig) to check).
func VerifyBytes(v Verifier, s Signature, b []byte) error { func VerifyBytes(v Verifier, s Signature, b []byte) error {
return v.verify(s, bytes.NewBuffer(b)) return v.verify(s, bytes.NewBuffer(b))
} }
@ -179,8 +178,7 @@ func VerifyBytes(v Verifier, s Signature, b []byte) error {
// VerifyString uses the Verifier to verify that the Signature is for the given // VerifyString uses the Verifier to verify that the Signature is for the given
// string. // string.
// //
// Returns any errors from io.Reader, or ErrInvalidSig (use merry.Is(err, // Returns ErrInvalidSig (use merry.Is(err, mcrypto.ErrInvalidSig) to check).
// mcrypto.ErrInvalidSig) to check).
func VerifyString(v Verifier, s Signature, in string) error { func VerifyString(v Verifier, s Signature, in string) error {
return VerifyBytes(v, s, []byte(in)) return VerifyBytes(v, s, []byte(in))
} }