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.
aez
✓ github.com/Yawning/aez
Encrypts plaintext using AEZ.
package main
import (
"fmt"
"github.com/Yawning/aez"
)
func main() {
key := []byte("example key 1234")
nonce := []byte("unique nonce")
plaintext := []byte("Hello, world!")
ciphertext, err := aez.Seal(nil, nonce, plaintext, nil, nil)
if err != nil {
panic(err)
}
fmt.Printf("Ciphertext: %x\n", ciphertext)
}
Debug
Known issues
No known issues recorded.
Upgrade
Version history
0.0.0-20211027044916-e49e68abd344latest on pkg.go.dev
Audit
Dependencies
No dependency data recorded yet.