lbry.go/binding/lbryschema-python-binding.go

41 lines
880 B
Go
Raw Normal View History

2017-11-09 04:01:32 +01:00
package main
import (
"C"
"../claim"
)
//export VerifySignature
2017-11-13 16:11:19 +01:00
func VerifySignature(claimHex string, certificateHex string, claimAddress string, certificateId string) bool {
2017-11-09 04:01:32 +01:00
decodedClaim, err := claim.DecodeClaimHex(claimHex)
if err != nil {
return false
}
decodedCertificate, err := claim.DecodeClaimHex(certificateHex)
2017-11-13 16:11:19 +01:00
if err != nil {
return false
}
2017-11-09 04:01:32 +01:00
result, err := decodedClaim.ValidateClaimSignature(decodedCertificate, claimAddress, certificateId)
if err != nil {
return false
}
2017-11-13 16:11:19 +01:00
if result == false {
return false
}
return true
}
//export DecodeClaimHex
func DecodeClaimHex(claimHex string) *C.char {
decodedClaim, err := claim.DecodeClaimHex(claimHex)
if err != nil {
return C.CString("decode error")
}
decoded, err := decodedClaim.RenderJSON()
if err != nil {
return C.CString("encode error")
}
return C.CString(decoded)
2017-11-09 04:01:32 +01:00
}
func main() {}