Readme 659 B

12345678910111213141516171819202122
  1. Fernet takes a user-provided *message* (an arbitrary sequence of
  2. bytes), a *key* (256 bits), and the current time, and produces a
  3. *token*, which contains the message in a form that can't be read
  4. or altered without the key.
  5. This package is compatible with the other implementations at
  6. https://github.com/fernet. They can exchange tokens freely among
  7. each other.
  8. Documentation: http://godoc.org/github.com/fernet/fernet-go
  9. INSTALL
  10. $ go get github.com/fernet/fernet-go
  11. For more information and background, see the Fernet spec at
  12. https://github.com/fernet/spec.
  13. Fernet is distributed under the terms of the MIT license.
  14. See the License file for details.