Sha256: 247955d844ec18e3408369ba77121eb7f89450ea54573359c46dc45ca7129db2

Contents?: true

Size: 1.13 KB

Versions: 1

Compression:

Stored size: 1.13 KB

Contents

require 'paint'
def vprint(*args)
 puts args if $verbose
end

TASKS_HELP =
%Q{    encrypt                          Encrypt the message with the given key (AES).
    decrypt                          Decrypt the message with the given key (AES).
    hash                             Hash a given message with SHA-256.
    sum                              Retrieve the SHA-256 checksum of a given file.
    uuid                             Generate a random UUID.
    totp                             Generate a Time-based One Time Password.
    b64e                             Encode data in base64.
    b64d                             Decode base64 data.
    lookup                           Check if a hash has been cracked (hashes.org API key needed).

  #{Paint['Examples', '#95a5a6']}
    #{Paint['$ krypton encrypt "mymessage" "mykey"', '#2ecc71']} => #{Paint['ckhJWXcyTE1leENLOWpBQzJWbElMdz09Cg==', '#95a5a6']}
    #{Paint['$ krypton hash "mymessage"', '#2ecc71']} => #{Paint['S3ONp9WM7/rCMeuUnvWDzp5dxbuSVsOV6bI5AJvRqCc=', '#95a5a6']}
    #{Paint['$ krypton totp "mygreatsecret"', '#2ecc71']} => #{Paint['778501', '#95a5a6']}
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
krypton-0.2.0 lib/core/text.rb