March 2019
Intermediate to advanced
336 pages
9h 9m
English
The main method invokes the createHashMutliple method, passing Check and Hash as string parameters, and prints the hash value of the strings, as follows:
// main methodfunc main() { var bytes []byte bytes = CreateHashMultiple([]byte("Check"), []byte("Hash")) fmt.Printf("%x\n", bytes)}
Run the following command to execute the hash.go file:
go run hash.go
The output is as follows:

Read now
Unlock full access