Sha256: b73bd26bdd28e70a6062463e3ab3513aeab7ed860ff8be10d00d538f2718ba19
Contents?: true
Size: 1.62 KB
Versions: 2
Compression:
Stored size: 1.62 KB
Contents
# frozen_string_literal: true # # Copyright (c) 2006-2022 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin Support is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published # by the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # Ronin Support is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with Ronin Support. If not, see <http://www.gnu.org/licenses/>. # require 'ronin/support/crypto/cipher/aes' module Ronin module Support module Crypto class Cipher < OpenSSL::Cipher class AES128 < AES # # Initializes the AES 128bit cipher. # # @param [Symbol] hash # The hashing algorithm to use to generate the key. # # @param [Hash{Symbol => Object}] kwargs # Additional keyword arguments for {AES#initialize}. # def initialize(hash: :md5, **kwargs) super(key_size: 128, hash: hash, **kwargs) end # # The list of supported AES 128bit ciphers. # # @return [Array<String>] # The list of supported AES 128bit cipher names. # def self.supported super().grep(/^aes[-]?128/) end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ronin-support-1.0.0.beta2 | lib/ronin/support/crypto/cipher/aes128.rb |
ronin-support-1.0.0.beta1 | lib/ronin/support/crypto/cipher/aes128.rb |