Class: HrrRbSsh::Transport::EncryptionAlgorithm
- Inherits:
-
Object
- Object
- HrrRbSsh::Transport::EncryptionAlgorithm
show all
- Defined in:
- lib/hrr_rb_ssh/transport/encryption_algorithm.rb,
lib/hrr_rb_ssh/transport/encryption_algorithm/none.rb,
lib/hrr_rb_ssh/transport/encryption_algorithm/arcfour.rb,
lib/hrr_rb_ssh/transport/encryption_algorithm/aes128_cbc.rb,
lib/hrr_rb_ssh/transport/encryption_algorithm/aes128_ctr.rb,
lib/hrr_rb_ssh/transport/encryption_algorithm/aes192_cbc.rb,
lib/hrr_rb_ssh/transport/encryption_algorithm/aes192_ctr.rb,
lib/hrr_rb_ssh/transport/encryption_algorithm/aes256_cbc.rb,
lib/hrr_rb_ssh/transport/encryption_algorithm/aes256_ctr.rb,
lib/hrr_rb_ssh/transport/encryption_algorithm/cast128_cbc.rb,
lib/hrr_rb_ssh/transport/encryption_algorithm/blowfish_cbc.rb,
lib/hrr_rb_ssh/transport/encryption_algorithm/functionable.rb,
lib/hrr_rb_ssh/transport/encryption_algorithm/three_des_cbc.rb,
lib/hrr_rb_ssh/transport/encryption_algorithm/unfunctionable.rb,
lib/hrr_rb_ssh/transport/encryption_algorithm/encryption_algorithm.rb
Direct Known Subclasses
Aes128Cbc, Aes128Ctr, Aes192Cbc, Aes192Ctr, Aes256Cbc, Aes256Ctr, Arcfour, BlowfishCbc, Cast128Cbc, None, ThreeDesCbc
Defined Under Namespace
Modules: Functionable, Unfunctionable
Classes: Aes128Cbc, Aes128Ctr, Aes192Cbc, Aes192Ctr, Aes256Cbc, Aes256Ctr, Arcfour, BlowfishCbc, Cast128Cbc, EncryptionAlgorithm, None, ThreeDesCbc
Class Method Summary
collapse
Class Method Details
.[](key) ⇒ Object
15
16
17
|
# File 'lib/hrr_rb_ssh/transport/encryption_algorithm.rb', line 15
def self.[] key
EncryptionAlgorithm[key]
end
|
.list ⇒ Object
7
8
9
|
# File 'lib/hrr_rb_ssh/transport/encryption_algorithm.rb', line 7
def self.list
EncryptionAlgorithm.list
end
|
.name_list ⇒ Object
11
12
13
|
# File 'lib/hrr_rb_ssh/transport/encryption_algorithm.rb', line 11
def self.name_list
EncryptionAlgorithm.name_list
end
|