Registry / crypto / rfjakob-eme

rfjakob-eme

JSON →
library1.2.0gogounverified

EME (ECB-Mix-ECB) is a wide-block encryption mode that uses multiple block cipher invocations to construct a cipher with a larger block size, supporting blocks from 16 to 2048 bytes.

go get github.com/rfjakob/eme
INSTALL
IMPORT
SIG · RFJAKOB-EME
R
rfjakob-eme
cryptogov1.2.0
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.

eme
github.com/rfjakob/eme

Encrypts plaintext using AES-EME with a given key.

package main import ( "crypto/aes" "fmt" "github.com/rfjakob/eme" ) func main() { key := []byte("example key 1234") plaintext := []byte("Hello, World!") ciphertext := eme.Encrypt(aes.NewCipher, key, plaintext, nil) fmt.Printf("Ciphertext: %x\n", ciphertext) }
Debug
Known issues

No known issues recorded.

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

No dependency data recorded yet.

Agent activity
17 hits · last 30 days
node
16
Resources
rfjakob-eme — go get rfjakob-eme · libregistry