rex-text 0.2.45 → 0.2.46

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 35b8656aec1d2bd88d707649036693d4421362967f7602e1d18de3aae6e3ea57
4
- data.tar.gz: 974fe908dd1312fe9a0ccdaa3844b9a537e83e6f001afe5ae28dc153350e5261
3
+ metadata.gz: 95af94249afe1b19de73e1090346169a280f87a8d3519838983630fb7e1cf69d
4
+ data.tar.gz: '06227846a02fc5b531e89b8114e17611a474ae231e3913adc1c2de72b53343c6'
5
5
  SHA512:
6
- metadata.gz: 7c3599bb12273e92655678f398595257fc357e0875e8c52ef109e16cb8861c226da817a901a3d884437e0ce2c051796005e297f5c2e33127e48c288e8d72f253
7
- data.tar.gz: 1cab334469f0ed24807b4d651c87b2c677ab9a9b46616822f3715326e8917bfd0716f157e92b6ae4169c9b98b5dfc89b57bab928834c7c34ebbe7f3495284073
6
+ metadata.gz: da78d18313b0d2c43819df1c2f812fe4e0b90ba8d1b47f8ab8beabe1025014e77c1c4651b9c9e25047bfdd52b7260ac872727dc0dd6d157129ade62d62c86aee
7
+ data.tar.gz: 92ee63cde2940b9eafe27264087f97210dfdd368754f4c84905c4b941590b0c28083c01b6b5f22d3110de8d9b2bb78f6dd42255432e762af07c95bffb3da215a
checksums.yaml.gz.sig CHANGED
Binary file
data/lib/rex/text/lang.rb CHANGED
@@ -86,6 +86,28 @@ module Rex
86
86
  return "#[\n" + wordwrap(str, 0, wrap, '', '') + "]#\n"
87
87
  end
88
88
 
89
+ #
90
+ # Converts to a Rust style array of bytes
91
+ #
92
+ def self.to_rust(str, wrap = DefaultWrap, name = "buf")
93
+ ret = "let #{name}: [u8; #{str.length}] = ["
94
+ str.each_char do |char|
95
+ # "0x##,".length is 5, check if we're going over the wrap boundary
96
+ ret << "\n" if ret.split("\n").last.length + 5 > wrap
97
+ ret << "0x" << char.unpack('H*')[0] << ","
98
+ end
99
+ ret = ret[0..ret.length - 2] unless str.empty? # cut off last comma
100
+ ret << "\n" if ret.split("\n").last.length + 2 > wrap
101
+ ret << "];\n"
102
+ end
103
+
104
+ #
105
+ # Creates a Rust style comment
106
+ #
107
+ def self.to_rust_comment(str, wrap = DefaultWrap)
108
+ return "/*\n" + wordwrap(str, 0, wrap, '', ' * ') + " */\n"
109
+ end
110
+
89
111
  #
90
112
  # Creates a c-style comment
91
113
  #
@@ -1,5 +1,5 @@
1
1
  module Rex
2
2
  module Text
3
- VERSION = "0.2.45"
3
+ VERSION = "0.2.46"
4
4
  end
5
5
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rex-text
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.45
4
+ version: 0.2.46
5
5
  platform: ruby
6
6
  authors:
7
7
  - Metasploit Hackers
@@ -93,7 +93,7 @@ cert_chain:
93
93
  EknWpNgVhohbot1lfVAMmIhdtOVaRVcQQixWPwprDj/ydB8ryDMDosIMcw+fkoXU
94
94
  9GJsSaSRRYQ9UUkVL27b64okU8D48m8=
95
95
  -----END CERTIFICATE-----
96
- date: 2022-09-06 00:00:00.000000000 Z
96
+ date: 2022-10-31 00:00:00.000000000 Z
97
97
  dependencies:
98
98
  - !ruby/object:Gem::Dependency
99
99
  name: rake
metadata.gz.sig CHANGED
Binary file