neoneo-go/pkg/interop/crypto/crypto.go

16 lines
457 B
Go
Raw Normal View History

2020-05-18 07:58:27 +00:00
/*
Package crypto provides an interface to cryptographic syscalls.
*/
package crypto
2020-05-18 07:58:27 +00:00
// SHA256 computes SHA256 hash of b. It uses `Neo.Crypto.SHA256` syscall.
func SHA256(b []byte) []byte {
return nil
}
// ECDsaSecp256r1Verify checks that sig is correct msg's signature for a given pub
// (serialized public key). It uses `Neo.Crypto.VerifyWithECDsaSecp256r1` syscall.
func ECDsaSecp256r1Verify(msg []byte, pub []byte, sig []byte) bool {
return false
}