class Net::SSH::Transport::OpenSSLAESCTR

Public Class Methods

block_size() click to toggle source
# File lib/net/ssh/transport/ctr.rb, line 16
def self.block_size
  16
end
new(original) click to toggle source
Calls superclass method
# File lib/net/ssh/transport/ctr.rb, line 7
def initialize(original)
  super
  @was_reset = false
end

Public Instance Methods

block_size() click to toggle source
# File lib/net/ssh/transport/ctr.rb, line 12
def block_size
  16
end
iv=(iv_s) click to toggle source
Calls superclass method
# File lib/net/ssh/transport/ctr.rb, line 24
def iv=(iv_s)
  super unless @was_reset
end
reset() click to toggle source
# File lib/net/ssh/transport/ctr.rb, line 20
def reset
  @was_reset = true
end