Categorygithub.com/RealImage/dyno
modulepackage
1.2.1
Repository: https://github.com/realimage/dyno.git
Documentation: pkg.go.dev

# README

Dyno

CI 🏗 Go Reference

Encrypt and decrypt DynamoDB primary key attribute values. You can either use AWS KMS (don't manage keys; expensive) or AES with your choice of password.

Use it to send encrypted last evaluated key values that clients can use as cursors to paginate through DynamoDB results.

License

Dyno is available under the terms of the MIT license.

Qube Cinema © 2023

# Functions

NewAesCrypter creates a new KeyCrypter that encrypts DynamoDB primary key attributes with AES GCM encryption.
No description provided by the author
WithEncryptionContext returns a new context with the given AWS KMS encryption context.

# Interfaces

KeyCrypter is an interface that encrypts and decrypts DynamoDB primary key attribute values.

# Type aliases

Base64Bytes reads a base64 encoded string and decodes it into a byte slice.