goish 0.16.2

Goish Rust — write Rust using Go idioms. Ports Go's standard library and syntax so Go programmers can write Rust code that reads and feels like Go.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// crypto: namespace for cryptographic primitives.
//
//   Go                                  goish
//   ─────────────────────────────────   ──────────────────────────────────
//   "crypto/md5"                        goish::crypto::md5
//   "crypto/sha1"                       goish::crypto::sha1
//   "crypto/sha256"                     goish::crypto::sha256
//
// Go's `crypto` package itself defines the `Hash` enum + PublicKey interfaces;
// those land in v0.5+ alongside any AEAD support. For now this is a namespace
// for the digest sub-packages.

pub mod md5;
pub mod sha1;
pub mod sha256;