ciphr 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e70f6b9ae3a9a53aa202128b800df0272bc0f9d0
4
- data.tar.gz: 750425aee3a673a2f97cfc17e4a50332f45cdf43
3
+ metadata.gz: 81ebc038903344df43ae704a0900644d2daf82c9
4
+ data.tar.gz: d4c6416f6c8599a4be38154cf5813db49b5a52b1
5
5
  SHA512:
6
- metadata.gz: 612d14a6513c7656311c132cb6b58a8babfd0bbc9bd81958daa4d40e9dd8adfd504df37c6e2fe919fd6f6455f9109afb1dba5d1d32503c11d3aa8ad9c8f18eca
7
- data.tar.gz: 6dc7c4137ce5b4adf216f4b808f25b16825eddad0a6b3944179fed4c899680ae52d1532991ab51388ebdcf27c6f0468032a9e335e9ff061ecede2d84c5b27dcf
6
+ metadata.gz: eace63b12d8ee73066bf0a7b80937028b1bf78bd1a7975bffad6f3f5d6bdda316d3c10957829f3e74e6221d8f2219e44705ab75e27e798b1c22a2cb1e238c783
7
+ data.tar.gz: 810ed0dd71e579fa628be1293e4f936e7bddc01973af206bad6d39953ea66b7d5229e56c30af4114ed4129ebdade56575398f443b6878ce3f1097d3c7b91f1e0
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ciphr (0.0.1)
4
+ ciphr (0.0.2)
5
5
  base32 (~> 0.3.2)
6
6
  parslet (~> 1.5.0)
7
7
  slop (~> 3.6.0)
@@ -1,32 +1,34 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'ciphr/version'
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "ciphr"
8
- spec.version = Ciphr::VERSION
9
- spec.authors = ["Chris Frohoff"]
10
- spec.email = ["chris@frohoff.org"]
11
- spec.description = ""
12
- spec.summary = "gem for composing (en|de)coding, digest, cipher operations"
13
- spec.homepage = ""
14
- spec.license = "MIT"
15
-
16
- spec.files = Dir['**/*']
17
- spec.executables << 'ciphr'
18
- spec.test_files = Dir['test/**/*', 'spec/**/*']
19
- spec.require_paths = ["lib"]
20
-
21
- spec.add_development_dependency "bundler", "~> 1.3"
22
- spec.add_development_dependency "rake", "~> 10.5.0"
23
- spec.add_development_dependency "rspec", "~> 3.4.0"
24
- #spec.add_development_dependency 'coveralls'
25
- #spec.add_development_dependency 'codeclimate-test-reporter'
26
-
27
- spec.add_dependency "parslet", "~> 1.5.0"
28
- spec.add_dependency "slop", "~> 3.6.0"
29
- spec.add_dependency "base32", "~> 0.3.2"
30
- #spec.add_dependency "base32-crockford"
31
- #spec.add_dependency "zbase32"
32
- end
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'ciphr/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "ciphr"
8
+ spec.version = Ciphr::VERSION
9
+ spec.authors = ["Chris Frohoff"]
10
+ spec.email = ["chris@frohoff.org"]
11
+ spec.summary = "a CLI tool for performing and composing encoding, decoding, encryption, decryption, hashing, and other various operations on streams of data from the command line; mostly intended for infosec uses."
12
+ spec.description = "Ciphr is a CLI tool for performing and composing encoding, decoding, encryption, decryption, hashing, and other various operations on streams of data. It takes provided data, file data, or data from stdin, and executes a pipeline of functions on the data stream, writing the resulting data to stdout. It was designed primarily for use in the information security domain, mostly for quick or casual data manipulation for forensics, penetration testing, or capture-the-flag events; it likely could have other unforseen uses, but should be presumed to be an experimental toy as no effort was made to make included cryptographic functions robust against attacks (timing attacks, etc), and it is recommended not to use any included functions in any on-line security mechanisms."
13
+ spec.homepage = "https://github.com/frohoff/ciphr"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = Dir['**/*']
17
+ spec.executables << 'ciphr'
18
+ spec.test_files = Dir['test/**/*', 'spec/**/*']
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.required_ruby_version = ">= 1.9.3"
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.3"
24
+ spec.add_development_dependency "rake", "~> 10.5.0"
25
+ spec.add_development_dependency "rspec", "~> 3.4.0"
26
+ #spec.add_development_dependency 'coveralls'
27
+ #spec.add_development_dependency 'codeclimate-test-reporter'
28
+
29
+ spec.add_dependency "parslet", "~> 1.5.0"
30
+ spec.add_dependency "slop", "~> 3.6.0"
31
+ spec.add_dependency "base32", "~> 0.3.2"
32
+ #spec.add_dependency "base32-crockford"
33
+ #spec.add_dependency "zbase32"
34
+ end
@@ -1,3 +1,3 @@
1
1
  module Ciphr
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ciphr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Frohoff
@@ -94,7 +94,16 @@ dependencies:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
96
  version: 0.3.2
97
- description: ''
97
+ description: Ciphr is a CLI tool for performing and composing encoding, decoding,
98
+ encryption, decryption, hashing, and other various operations on streams of data.
99
+ It takes provided data, file data, or data from stdin, and executes a pipeline of
100
+ functions on the data stream, writing the resulting data to stdout. It was designed
101
+ primarily for use in the information security domain, mostly for quick or casual
102
+ data manipulation for forensics, penetration testing, or capture-the-flag events;
103
+ it likely could have other unforseen uses, but should be presumed to be an experimental
104
+ toy as no effort was made to make included cryptographic functions robust against
105
+ attacks (timing attacks, etc), and it is recommended not to use any included functions
106
+ in any on-line security mechanisms.
98
107
  email:
99
108
  - chris@frohoff.org
100
109
  executables:
@@ -125,6 +134,7 @@ files:
125
134
  - lib/ciphr/stream.rb
126
135
  - lib/ciphr/version.rb
127
136
  - pkg/ciphr-0.0.1.gem
137
+ - pkg/ciphr-0.0.2.gem
128
138
  - spec/ciphr_spec.rb
129
139
  - spec/functions_spec.rb
130
140
  - spec/randomizer_spec.rb
@@ -140,7 +150,7 @@ files:
140
150
  - tests/testcase.r26.bin
141
151
  - tests/testcase.r30.bin
142
152
  - tests/testcase.r34.bin
143
- homepage: ''
153
+ homepage: https://github.com/frohoff/ciphr
144
154
  licenses:
145
155
  - MIT
146
156
  metadata: {}
@@ -152,7 +162,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
152
162
  requirements:
153
163
  - - ">="
154
164
  - !ruby/object:Gem::Version
155
- version: '0'
165
+ version: 1.9.3
156
166
  required_rubygems_version: !ruby/object:Gem::Requirement
157
167
  requirements:
158
168
  - - ">="
@@ -163,7 +173,9 @@ rubyforge_project:
163
173
  rubygems_version: 2.4.8
164
174
  signing_key:
165
175
  specification_version: 4
166
- summary: gem for composing (en|de)coding, digest, cipher operations
176
+ summary: a CLI tool for performing and composing encoding, decoding, encryption, decryption,
177
+ hashing, and other various operations on streams of data from the command line;
178
+ mostly intended for infosec uses.
167
179
  test_files:
168
180
  - spec/ciphr_spec.rb
169
181
  - spec/functions_spec.rb