Registry / crypto / connesc-cipherio

connesc-cipherio

JSON →
library0.2.1gogounverified

cipherio provides io.Reader and io.Writer implementations for block ciphers like AES-CBC, with optional padding support.

go get github.com/connesc/cipherio
INSTALL
IMPORT
SIG · CONNESC-CIPHERIO
C
connesc-cipherio
cryptogov0.2.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

cipherio
github.com/connesc/cipherio

Create a CBC encryption writer

package main import ( "crypto/aes" "crypto/cipher" "fmt" "github.com/connesc/cipherio" ) func main() { block, _ := aes.NewCipher([]byte("examplekey1234567")) mode := cipher.NewCBCEncrypter(block, []byte("iv12345678901234")) writer := cipherio.NewWriter(nil, mode) fmt.Println(writer) }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.2.1latest on pkg.go.dev
Audit
Dependencies

No dependency data recorded yet.

Agent activity
14 hits · last 30 days
node
12
Resources
connesc-cipherio — go get connesc-cipherio · libregistry