Source File
aes.go
Belonging Package
github.com/tmc/go-iroh/internal/itls/shim/fipsaes
// Package fipsaes is a shim for crypto/internal/fips140/aes, exposing just the// Block type and constructor the vendored crypto/tls casts to. It wraps the// stdlib crypto/aes cipher.package fipsaesimport ()// BlockSize is the AES block size in bytes.const BlockSize = aes.BlockSize// Block wraps a stdlib AES cipher.Block.type Block struct {cipher.Block}// New wraps a stdlib AES cipher.Block as a *Block.func ( cipher.Block) *Block { return &Block{Block: } }
![]() |
The pages are generated with Golds v0.8.4. (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. |