Cryptography with Go
This lesson describes a technique for secure communication of data and how Go achieves this security.
We'll cover the following...
Introduction #
A technique to secure data from the third parties over communication is called cryptography. The data transferred over networks must be encrypted so that no hacker can read or change it. Also, checksums calculated over the data, before sending and after receiving, must be identical. Given the business of its mother company Google, it will come as no surprise to see that Go has more than 30 packages to offer in ...