class Origami::HexaString
Public Class Methods
Public Instance Methods
to_obfuscated_str()
click to toggle source
# File lib/origami/obfuscation.rb, line 179 def to_obfuscated_str to_s end
to_raw()
click to toggle source
Converts self to ByteString
# File lib/origami/string.rb, line 235 def to_raw ByteString.new(self.value) end
value()
click to toggle source
# File lib/origami/string.rb, line 239 def value self.decrypt! if self.is_a?(Encryption::EncryptedString) and not @decrypted to_str end