Sha256: 3aa29e9701dc9a95ac7c5f737c6e2a097019192da99d6a6642bd4ccb4d29dae8

Contents?: true

Size: 390 Bytes

Versions: 4

Compression:

Stored size: 390 Bytes

Contents

module OpenPGP
  class Cipher
    ##
    class AES < Cipher
      ENGINE     = 'AES-128-ECB'
    end

    ##
    class AES128 < AES
      IDENTIFIER = 7
      ENGINE     = 'AES-128-ECB'
    end

    ##
    class AES192 < AES
      IDENTIFIER = 8
      ENGINE     = 'AES-192-ECB'
    end

    ##
    class AES256 < AES
      IDENTIFIER = 9
      ENGINE     = 'AES-256-ECB'
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
openpgp-0.0.3 lib/openpgp/cipher/aes.rb
klacointe-openpgp-0.0.1.4 lib/openpgp/cipher/aes.rb
openpgp-0.0.2 lib/openpgp/cipher/aes.rb
klacointe-openpgp-0.0.1.3 lib/openpgp/cipher/aes.rb