mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-22 19:29:39 +00:00
vm: add ParseSignatureContract()
This commit is contained in:
parent
e66d36900c
commit
ded6a70335
2 changed files with 22 additions and 5 deletions
|
@ -105,24 +105,32 @@ func ParseMultiSigContract(script []byte) (int, [][]byte, bool) {
|
|||
// IsSignatureContract checks whether the passed script is a signature check
|
||||
// contract.
|
||||
func IsSignatureContract(script []byte) bool {
|
||||
_, ok := ParseSignatureContract(script)
|
||||
return ok
|
||||
}
|
||||
|
||||
// ParseSignatureContract parses simple signature contract and returns
|
||||
// public key.
|
||||
func ParseSignatureContract(script []byte) ([]byte, bool) {
|
||||
if len(script) != 41 {
|
||||
return false
|
||||
return nil, false
|
||||
}
|
||||
|
||||
ctx := NewContext(script)
|
||||
instr, param, err := ctx.Next()
|
||||
if err != nil || instr != opcode.PUSHDATA1 || len(param) != 33 {
|
||||
return false
|
||||
return nil, false
|
||||
}
|
||||
pub := param
|
||||
instr, _, err = ctx.Next()
|
||||
if err != nil || instr != opcode.PUSHNULL {
|
||||
return false
|
||||
return nil, false
|
||||
}
|
||||
instr, param, err = ctx.Next()
|
||||
if err != nil || instr != opcode.SYSCALL || binary.LittleEndian.Uint32(param) != verifyInteropID {
|
||||
return false
|
||||
return nil, false
|
||||
}
|
||||
return true
|
||||
return pub, true
|
||||
}
|
||||
|
||||
// IsStandardContract checks whether the passed script is a signature or
|
||||
|
|
|
@ -25,6 +25,15 @@ func testSignatureContract() []byte {
|
|||
return prog
|
||||
}
|
||||
|
||||
func TestParseSignatureContract(t *testing.T) {
|
||||
prog := testSignatureContract()
|
||||
pub := randomBytes(33)
|
||||
copy(prog[2:], pub)
|
||||
actual, ok := ParseSignatureContract(prog)
|
||||
require.True(t, ok)
|
||||
require.Equal(t, pub, actual)
|
||||
}
|
||||
|
||||
func TestIsSignatureContract(t *testing.T) {
|
||||
t.Run("valid contract", func(t *testing.T) {
|
||||
prog := testSignatureContract()
|
||||
|
|
Loading…
Reference in a new issue