Revert "remove key.Key.Equals for more compatibility"

This reverts commit 7f5df570631033b017e2d724f7cd118445834ec9.
This commit is contained in:
Sergey Cherepanov 2023-01-05 18:24:48 +03:00 committed by Mikhail Iudin
parent 770b649936
commit c74c41deaa
No known key found for this signature in database
GPG Key ID: FAAAA8BAABDFF1C0

View File

@ -3,6 +3,8 @@ package keys
import "crypto/subtle"
type Key interface {
Equals(Key) bool
Raw() ([]byte, error)
}