Skip to content

Latest commit

 

History

History
37 lines (31 loc) · 866 Bytes

README.md

File metadata and controls

37 lines (31 loc) · 866 Bytes

AutoSign

AutoSignature Executable in Golang

Times on Windows:

  • 300~ms create a signed file
  • 4~ms verify a signed file

Times on Linux:

  • 40~ms create a signed file
  • 4~ms verify a signed file

Start using it

  1. Download and install it:
   $ go get github.com/jonathanhecl/autosign
  1. Import it in your code:
   import "github.com/jonathanhecl/autosign"
  1. Apply it:
   hash, _ := autosign.Init()

Or you can add a Salt with:

   hash, _ := autosign.Init([]byte("salt"))

Also you can use the hash to verification of the version on internet or you can use it like "tokenCode" in a package like my other project controlrun

Screenshots

Running

Running

AutoSign

AutoSign