Files
i2p.plugins.tor-updater/main.go

14 lines
199 B
Go
Raw Normal View History

package main
func main() {
bin, sig, err := tbget.DownloadUpdaterForLang("")
if err != nil {
panic(err)
}
if tbget.CheckSignature(bin, sig) {
} else {
panic("Signature check failed")
}
}