package aes
Import Path
crypto/aes (on go.dev)
Dependency Relation
imports 9 packages, and imported by 4 packages
Involved Source Files
aes_gcm.go
block.go
cipher.go
cipher_asm.go
Package aes implements AES encryption (formerly Rijndael), as defined in
U.S. Federal Information Processing Standards Publication 197.
The AES operations in this package are not implemented using constant-time algorithms.
An exception is when running on systems with enabled hardware support for AES
that makes these operations constant-time. Examples include amd64 systems using AES-NI
extensions and s390x systems using Message-Security-Assist extensions.
On such systems, when the result of NewCipher is passed to cipher.NewGCM,
the GHASH operation used by GCM is also constant-time.
modes.go
asm_amd64.s
gcm_amd64.s
Package-Level Functions (only one)
NewCipher creates and returns a new [cipher.Block].
The key argument should be the AES key,
either 16, 24, or 32 bytes to select
AES-128, AES-192, or AES-256.
Package-Level Constants (only one)
The AES block size in bytes.
The pages are generated with Golds v0.7.0-preview. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |