module SimplyAES

SimplyAES provides a simple, straight-forward interface for securely encrypting data in Ruby using key-based AES-256, the most secure variant of the [*Advanced Encryption Standard*], complete with securely-generated initialisation vectors.

rubocop:disable Style/ModuleFunction

SimplyAES follows [semver](semver.org/).

Constants

VERSION

Public Class Methods

new(*args) click to toggle source

@see SimplyAES::Cipher#initialize

# File lib/simply-aes.rb, line 12
def self.new(*args)
  Cipher.new(*args)
end