Sha256: 6e01747dad63e00c4d11abb9e07894f58c2d8e60dd983a7cca16931d10b2f91b
Contents?: true
Size: 541 Bytes
Versions: 7
Compression:
Stored size: 541 Bytes
Contents
module CoBreak class List #all list formats and types def initialize(options) type = Array.new type << "Base64" << "Base32" << "Base16" << "Ascii85" << "Binary" << "Cesar" if (options.list.eql?("type")) puts "\nMode Cipher:" puts type end format = Array.new format << "MD4" << "MD5" << "SHA1" << "SHA224" << "SHA256" << "SHA384" << "SHA512" << "RIPEMD160" if (options.list.eql?("format")) puts "\nMode Cryptography:" puts format end end end end
Version data entries
7 entries across 7 versions & 1 rubygems