forked from TrueCloudLab/neoneo-go
interop/crypto: update documentation
This commit is contained in:
parent
f0047b4055
commit
10abac4362
1 changed files with 11 additions and 8 deletions
|
@ -1,29 +1,32 @@
|
||||||
|
/*
|
||||||
|
Package crypto provides an interface to VM cryptographic instructions.
|
||||||
|
*/
|
||||||
package crypto
|
package crypto
|
||||||
|
|
||||||
// Package crypto provides function signatures that can be used inside
|
// SHA1 computes SHA1 hash of b. It uses `SHA1` VM instruction.
|
||||||
// smart contracts that are written in the neo-go framework.
|
|
||||||
|
|
||||||
// SHA1 computes the sha1 hash of b.
|
|
||||||
func SHA1(b []byte) []byte {
|
func SHA1(b []byte) []byte {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// SHA256 computes the sha256 hash of b.
|
// SHA256 computes SHA256 hash of b. It uses `SHA256` VM instruction.
|
||||||
func SHA256(b []byte) []byte {
|
func SHA256(b []byte) []byte {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Hash160 computes the sha256 + ripemd160 of b.
|
// Hash160 computes SHA256 + RIPEMD-160 of b, which is commonly used for
|
||||||
|
// script hashing and address generation. It uses `HASH160` VM instruction.
|
||||||
func Hash160(b []byte) []byte {
|
func Hash160(b []byte) []byte {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Hash256 computes the sha256^2 hash of b.
|
// Hash256 computes double SHA256 hash of b (SHA256(SHA256(b))) which is used
|
||||||
|
// as ID for transactions, blocks and assets. It uses `HASH256` VM instruction.
|
||||||
func Hash256(b []byte) []byte {
|
func Hash256(b []byte) []byte {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// VerifySignature checks that sig is msg's signature with pub.
|
// VerifySignature checks that sig is correct msg's signature for a given pub
|
||||||
|
// (serialized public key). It uses `VERIFY` VM instruction.
|
||||||
func VerifySignature(msg []byte, sig []byte, pub []byte) bool {
|
func VerifySignature(msg []byte, sig []byte, pub []byte) bool {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue