22 lines
831 B
Go
22 lines
831 B
Go
/*
|
|
Package crypto provides an interface to cryptographic syscalls.
|
|
*/
|
|
package crypto
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neo-go/pkg/interop"
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/neogointernal"
|
|
)
|
|
|
|
// CheckMultisig checks that script container (transaction) is signed by multiple
|
|
// ECDSA keys at once. It uses `System.Crypto.CheckMultisig` syscall.
|
|
func CheckMultisig(pubs []interop.PublicKey, sigs []interop.Signature) bool {
|
|
return neogointernal.Syscall2("System.Crypto.CheckMultisig", pubs, sigs).(bool)
|
|
}
|
|
|
|
// CheckSig checks that sig is correct signature of the script container
|
|
// (transaction) for a given pub (serialized public key). It uses
|
|
// `System.Crypto.CheckSig` syscall.
|
|
func CheckSig(pub interop.PublicKey, sig interop.Signature) bool {
|
|
return neogointernal.Syscall2("System.Crypto.CheckSig", pub, sig).(bool)
|
|
}
|