Class: String
Instance Method Summary collapse
-
#bth ⇒ Object
binary convert to hex string.
-
#bti ⇒ Object
binary convert to integer.
-
#htb ⇒ Object
hex string convert to binary.
-
#opcode ⇒ Object
get opcode.
- #opcode? ⇒ Boolean
- #push_opcode? ⇒ Boolean
-
#pushdata? ⇒ Boolean
whether data push only?.
- #pushed_data ⇒ Object
-
#rhex ⇒ Object
reverse hex string endian.
-
#valid_hex? ⇒ Boolean
whether value is hex or not hex.
Instance Method Details
#bth ⇒ Object
binary convert to hex string
106 107 108 |
# File 'lib/bitcoin.rb', line 106 def bth unpack('H*').first end |
#bti ⇒ Object
binary convert to integer
116 117 118 |
# File 'lib/bitcoin.rb', line 116 def bti bth.to_i(16) end |
#htb ⇒ Object
hex string convert to binary
111 112 113 |
# File 'lib/bitcoin.rb', line 111 def htb [self].pack('H*') end |
#opcode ⇒ Object
get opcode
126 127 128 129 130 131 132 133 134 135 |
# File 'lib/bitcoin.rb', line 126 def opcode case encoding when Encoding::ASCII_8BIT each_byte.next when Encoding::US_ASCII ord else to_i end end |
#opcode? ⇒ Boolean
137 138 139 |
# File 'lib/bitcoin.rb', line 137 def opcode? !pushdata? end |
#push_opcode? ⇒ Boolean
141 142 143 |
# File 'lib/bitcoin.rb', line 141 def push_opcode? [Bitcoin::Opcodes::OP_PUSHDATA1, Bitcoin::Opcodes::OP_PUSHDATA2, Bitcoin::Opcodes::OP_PUSHDATA4].include?(opcode) end |
#pushdata? ⇒ Boolean
whether data push only?
146 147 148 |
# File 'lib/bitcoin.rb', line 146 def pushdata? opcode <= Bitcoin::Opcodes::OP_PUSHDATA4 && opcode > Bitcoin::Opcodes::OP_0 end |
#pushed_data ⇒ Object
150 151 152 153 154 155 156 157 158 159 160 161 162 |
# File 'lib/bitcoin.rb', line 150 def pushed_data return nil unless pushdata? offset = 1 case opcode when Bitcoin::Opcodes::OP_PUSHDATA1 offset += 1 when Bitcoin::Opcodes::OP_PUSHDATA2 offset += 2 when Bitcoin::Opcodes::OP_PUSHDATA4 offset += 4 end self[offset..-1] end |
#rhex ⇒ Object
reverse hex string endian
121 122 123 |
# File 'lib/bitcoin.rb', line 121 def rhex htb.reverse.bth end |
#valid_hex? ⇒ Boolean
whether value is hex or not hex
166 167 168 |
# File 'lib/bitcoin.rb', line 166 def valid_hex? !self[/\H/] end |