Files
i2p.plugins.tor-updater/main.go
2022-01-16 14:34:46 -05:00

16 lines
258 B
Go

package main
import tbget "i2pgit.org/idk/i2p.plugins.tor-manager/get"
func main() {
bin, sig, err := tbget.DownloadUpdaterForLang("")
if err != nil {
panic(err)
}
if tbget.CheckSignature(bin, sig) {
} else {
panic("Signature check failed")
}
}