hirura/hrr_rb_ssh

View on GitHub
lib/hrr_rb_ssh/transport/encryption_algorithm/blowfish_cbc.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'hrr_rb_ssh/transport/encryption_algorithm/functionable'

module HrrRbSsh
  class Transport
    class EncryptionAlgorithm
      class BlowfishCbc < EncryptionAlgorithm
        NAME        = 'blowfish-cbc'
        PREFERENCE  = 140
        CIPHER_NAME = "BF-CBC"
        BLOCK_SIZE  = 8
        include Functionable
      end
    end
  end
end