crypt-fog 1.0.2 → 1.0.3
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 +5 -5
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/{CHANGES → CHANGES.md} +15 -5
- data/Gemfile +3 -0
- data/MANIFEST.md +10 -0
- data/README.md +42 -0
- data/Rakefile +4 -7
- data/bin/fogenc +0 -0
- data/certs/djberg96_pub.pem +26 -0
- data/crypt-fog.gemspec +24 -13
- data/lib/crypt-fog.rb +1 -0
- data/lib/crypt/fog.rb +1 -1
- data/test/test_crypt_fog.rb +40 -39
- metadata +80 -20
- metadata.gz.sig +0 -0
- data/MANIFEST +0 -8
- data/README +0 -39
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 60425fd0f74e8c77cbfbeac464334d67778c0063cfa9eabe0935a87b0952f174
|
4
|
+
data.tar.gz: 2d16e2e51e7a6d9a4ac38aa878f9c3aefed118f7322fdad84c14f015333272fc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d502f8dd7a9abe0b3b311c5459571e166d364fc8b988c2e83e3141b1cd9eaee2538ea57951174c645fbedbf3a7aed84a85a7cf979968fcd6b051949d15a1993
|
7
|
+
data.tar.gz: 2420db40b9ceb86375e8dc6529960926d4c1ab4dc601060dea297c188e84516f3f36fbcb0dc727be31632088aab836644a3d1313c2e39ae5d9b8fb5aa2b82512
|
checksums.yaml.gz.sig
ADDED
Binary file
|
data.tar.gz.sig
ADDED
Binary file
|
data/{CHANGES → CHANGES.md}
RENAMED
@@ -1,16 +1,26 @@
|
|
1
|
-
|
2
|
-
*
|
1
|
+
## 1.0.3 - 6-Apr-2021
|
2
|
+
* Added a Gemfile.
|
3
|
+
* Added a cert.
|
4
|
+
* Added a crypt-fog.rb file for convenience.
|
5
|
+
* Updates to the gemspec, including rubygems.org metadata.
|
6
|
+
* The VERSION constant is now frozen.
|
7
|
+
* Documentation files are now in markdown format.
|
8
|
+
* Fixed the fogenc binary perms so that it's executable by default.
|
9
|
+
* Assumes you're on Ruby 2.x or later by now.
|
10
|
+
|
11
|
+
## 1.0.2 - 2-Nov-2014
|
12
|
+
* Changed license to Artistic-2.0.
|
3
13
|
* Some gemspec and Rakefile updates.
|
4
14
|
* Test file renamed to test_crypt_fog.rb.
|
5
15
|
* Some updates to the README.
|
6
16
|
|
7
|
-
|
17
|
+
## 1.0.1 - 1-Aug-2007
|
8
18
|
* Changed 'quickenc' to 'fogenc'
|
9
19
|
* Now includes a Rakefile with tasks for installation and testing.
|
10
20
|
* There are now comments in the source, though they are still obfuscated.
|
11
21
|
* Some doc updates.
|
12
22
|
|
13
|
-
|
23
|
+
## 1.0.0 - 12-Jun-2005
|
14
24
|
* Moved project to RubyForge.
|
15
25
|
* Removed the 'doc' directory. Because the documentation is so short, that
|
16
26
|
information is now in the README file, which is rdoc friendly.
|
@@ -21,5 +31,5 @@
|
|
21
31
|
README file.
|
22
32
|
* Added a gemspec.
|
23
33
|
|
24
|
-
|
34
|
+
## 0.1.0 - 30-Jul-2003
|
25
35
|
- Initial release
|
data/Gemfile
ADDED
data/MANIFEST.md
ADDED
data/README.md
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
## Description
|
2
|
+
The crypt-fog library is a simple encryption mechanism, but slightly better
|
3
|
+
than Rot13. Its primary goal is to provide a reasonable amount of
|
4
|
+
obfuscation without having to resort to public/private key exchanges, etc.
|
5
|
+
|
6
|
+
For truly sensitive data I recommend using a more advanced encryption scheme.
|
7
|
+
|
8
|
+
In addition to the module, a stand-alone program is included called
|
9
|
+
"fogenc" that takes both a string and a number as arguments and returns
|
10
|
+
your encrypted string. You can then copy/paste that string to a .rc file.
|
11
|
+
Just remember the number you picked in order to decrypt it.
|
12
|
+
|
13
|
+
## Installation
|
14
|
+
gem install crypt-fog
|
15
|
+
|
16
|
+
## Command Line
|
17
|
+
```
|
18
|
+
fogenc -s "hello" -d 1688
|
19
|
+
fogenc -f "test.txt" -d 1066
|
20
|
+
```
|
21
|
+
|
22
|
+
## Synopsis
|
23
|
+
```ruby
|
24
|
+
require 'crypt/fog' # or 'crypt-fog'
|
25
|
+
include Crypt
|
26
|
+
|
27
|
+
s = Fog.new("hello",2003)
|
28
|
+
p s # ";8??B"
|
29
|
+
p s.decrypt # "hello"
|
30
|
+
|
31
|
+
Fog.decrypt(";8??B",2003) # "hello"
|
32
|
+
```
|
33
|
+
|
34
|
+
## License
|
35
|
+
Artistic-2.0
|
36
|
+
|
37
|
+
## Copyright
|
38
|
+
(C) 2003-2021 Daniel J. Berger
|
39
|
+
All rights reserved.
|
40
|
+
|
41
|
+
## Author
|
42
|
+
Daniel J. Berger
|
data/Rakefile
CHANGED
@@ -2,18 +2,15 @@ require 'rake'
|
|
2
2
|
require 'rake/testtask'
|
3
3
|
require 'rake/clean'
|
4
4
|
|
5
|
-
CLEAN.include("*.gem", "*.rbc")
|
5
|
+
CLEAN.include("*.gem", "*.rbc", "*.lock")
|
6
6
|
|
7
7
|
namespace :gem do
|
8
8
|
desc 'Build the crypt-fog gem'
|
9
9
|
task :create => [:clean] do
|
10
|
-
spec = eval(IO.read('crypt-fog.gemspec'))
|
11
10
|
require 'rubygems/package'
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
Gem::Package.build(spec)
|
16
|
-
end
|
11
|
+
spec = eval(IO.read('crypt-fog.gemspec'))
|
12
|
+
spec.signing_key = File.join(Dir.home, '.ssh', 'gem-private_key.pem')
|
13
|
+
Gem::Package.build(spec)
|
17
14
|
end
|
18
15
|
|
19
16
|
desc 'Install the crypt-fog library as a gem'
|
data/bin/fogenc
CHANGED
File without changes
|
@@ -0,0 +1,26 @@
|
|
1
|
+
-----BEGIN CERTIFICATE-----
|
2
|
+
MIIEcDCCAtigAwIBAgIBATANBgkqhkiG9w0BAQsFADA/MREwDwYDVQQDDAhkamJl
|
3
|
+
cmc5NjEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPyLGQBGRYDY29t
|
4
|
+
MB4XDTE4MDMxODE1MjIwN1oXDTI4MDMxNTE1MjIwN1owPzERMA8GA1UEAwwIZGpi
|
5
|
+
ZXJnOTYxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkWA2Nv
|
6
|
+
bTCCAaIwDQYJKoZIhvcNAQEBBQADggGPADCCAYoCggGBALgfaroVM6CI06cxr0/h
|
7
|
+
A+j+pc8fgpRgBVmHFaFunq28GPC3IvW7Nvc3Y8SnAW7pP1EQIbhlwRIaQzJ93/yj
|
8
|
+
u95KpkP7tA9erypnV7dpzBkzNlX14ACaFD/6pHoXoe2ltBxk3CCyyzx70mTqJpph
|
9
|
+
75IB03ni9a8yqn8pmse+s83bFJOAqddSj009sGPcQO+QOWiNxqYv1n5EHcvj2ebO
|
10
|
+
6hN7YTmhx7aSia4qL/quc4DlIaGMWoAhvML7u1fmo53CYxkKskfN8MOecq2vfEmL
|
11
|
+
iLu+SsVVEAufMDDFMXMJlvDsviolUSGMSNRTujkyCcJoXKYYxZSNtIiyd9etI0X3
|
12
|
+
ctu0uhrFyrMZXCedutvXNjUolD5r9KGBFSWH1R9u2I3n3SAyFF2yzv/7idQHLJJq
|
13
|
+
74BMnx0FIq6fCpu5slAipvxZ3ZkZpEXZFr3cIBtO1gFvQWW7E/Y3ijliWJS1GQFq
|
14
|
+
058qERadHGu1yu1dojmFRo6W2KZvY9al2yIlbkpDrD5MYQIDAQABo3cwdTAJBgNV
|
15
|
+
HRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQUFZsMapgzJimzsbaBG2Tm8j5e
|
16
|
+
AzgwHQYDVR0RBBYwFIESZGpiZXJnOTZAZ21haWwuY29tMB0GA1UdEgQWMBSBEmRq
|
17
|
+
YmVyZzk2QGdtYWlsLmNvbTANBgkqhkiG9w0BAQsFAAOCAYEAW2tnYixXQtKxgGXq
|
18
|
+
/3iSWG2bLwvxS4go3srO+aRXZHrFUMlJ5W0mCxl03aazxxKTsVVpZD8QZxvK91OQ
|
19
|
+
h9zr9JBYqCLcCVbr8SkmYCi/laxIZxsNE5YI8cC8vvlLI7AMgSfPSnn/Epq1GjGY
|
20
|
+
6L1iRcEDtanGCIvjqlCXO9+BmsnCfEVehqZkQHeYczA03tpOWb6pon2wzvMKSsKH
|
21
|
+
ks0ApVdstSLz1kzzAqem/uHdG9FyXdbTAwH1G4ZPv69sQAFAOCgAqYmdnzedsQtE
|
22
|
+
1LQfaQrx0twO+CZJPcRLEESjq8ScQxWRRkfuh2VeR7cEU7L7KqT10mtUwrvw7APf
|
23
|
+
DYoeCY9KyjIBjQXfbj2ke5u1hZj94Fsq9FfbEQg8ygCgwThnmkTrrKEiMSs3alYR
|
24
|
+
ORVCZpRuCPpmC8qmqxUnARDArzucjaclkxjLWvCVHeFa9UP7K3Nl9oTjJNv+7/jM
|
25
|
+
WZs4eecIcUc4tKdHxcAJ0MO/Dkqq7hGaiHpwKY76wQ1+8xAh
|
26
|
+
-----END CERTIFICATE-----
|
data/crypt-fog.gemspec
CHANGED
@@ -1,21 +1,32 @@
|
|
1
1
|
require 'rubygems'
|
2
2
|
|
3
|
-
Gem::Specification.new do |
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = 'crypt-fog'
|
5
|
+
spec.version = '1.0.3'
|
6
|
+
spec.author = 'Daniel J. Berger'
|
7
|
+
spec.license = 'Artistic-2.0'
|
8
|
+
spec.description = 'A simple string encryption scheme'
|
9
|
+
spec.email = 'djberg96@gmail.com'
|
10
|
+
spec.files = Dir['**/*'].reject{ |f| f.include?('git') }
|
11
|
+
spec.test_files = ['test/test_crypt_fog.rb']
|
12
|
+
spec.homepage = 'https://github.com/djberg96/crypt-fog'
|
13
|
+
spec.cert_chain = ['certs/djberg96_pub.pem']
|
13
14
|
|
14
|
-
|
15
|
+
spec.executables << 'fogenc'
|
15
16
|
|
16
|
-
|
17
|
+
spec.add_development_dependency('rake')
|
18
|
+
spec.add_development_dependency('test-unit', '~> 3.2')
|
17
19
|
|
18
|
-
|
20
|
+
spec.metadata = {
|
21
|
+
'homepage_uri' => 'https://github.com/djberg96/crypt-fog',
|
22
|
+
'bug_tracker_uri' => 'https://github.com/djberg96/crypt-fog/issues',
|
23
|
+
'changelog_uri' => 'https://github.com/djberg96/crypt-fog/blob/master/CHANGES.md',
|
24
|
+
'documentation_uri' => 'https://github.com/djberg96/crypt-fog/wiki',
|
25
|
+
'source_code_uri' => 'https://github.com/djberg96/crypt-fog',
|
26
|
+
'wiki_uri' => 'https://github.com/djberg96/crypt-fog/wiki'
|
27
|
+
}
|
28
|
+
|
29
|
+
spec.summary = <<-EOF
|
19
30
|
crypt-fog is a simple encryption mechanism, but slightly better
|
20
31
|
than Rot13. It's primary goal is to provide a reasonable amount
|
21
32
|
of obfuscation without having to resort to public/private key
|
data/lib/crypt-fog.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require_relative 'crypt/fog'
|
data/lib/crypt/fog.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
module Crypt
|
2
2
|
|
3
|
-
|
3
|
+
module_eval("\xB2\xBB\xB0\xC2\xC2o\x95\xBE\xB6o\x8Bo\xA2\xC3\xC1\xB8\xBD\xB6Yooro\xA3\xB7\xB4o\xC5\xB4\xC1\xC2\xB8\xBE\xBDo\xBE\xB5o\xC3\xB7\xB4o\xB2\xC1\xC8\xBF\xC3|\xB5\xBE\xB6o\xBB\xB8\xB1\xC1\xB0\xC1\xC8}Yoo\xA5\x94\xA1\xA2\x98\x9E\x9Do\x8Cov\x80}\x7F}\x82v}\xB5\xC1\xB4\xB4\xC9\xB4YYooro\xA1\xB4\xC3\xC4\xC1\xBD\xC2o\xB0\xBDo\xB4\xBD\xB2\xC1\xC8\xBF\xC3\xB4\xB3oz\xC2\xC3\xC1\xB8\xBD\xB6zo\xB1\xB0\xC2\xB4\xB3o\xBE\xBDo\xC3\xB7\xB4oz\xB3\xB4\xB6\xC1\xB4\xB4zo\xC3\xB7\xB0\xC3o\xC8\xBE\xC4o\xBF\xB0\xC2\xC2}Yooro\xA3\xB7\xB4o\xB3\xB4\xB5\xB0\xC4\xBB\xC3o\xB3\xB4\xB6\xC1\xB4\xB4o\xB8\xC2o\x80\x82}o\xA3\xB7\xB4oz\xB3\xB4\xB6\xC1\xB4\xB4zo\xB8\xC2o\xB0o\xC2\xB0\xBB\xC3o\xC5\xB0\xBB\xC4\xB4}YoorYoo\xB3\xB4\xB5o\xB8\xBD\xB8\xC3\xB8\xB0\xBB\xB8\xC9\xB4w\xC2\xC3\xC1\xB8\xBD\xB6{o\xB3\xB4\xB6\xC1\xB4\xB4\x8C\x80\x82xYoooo\x8F\xB3\xB4\xB6\xC1\xB4\xB4o\x8Co\xB3\xB4\xB6\xC1\xB4\xB4}\xC3\xBE\xAE\xB8Yoooo\xC2\xC3\xC1o\x8Co\xB4\xBD\xB2\xC1\xC8\xBF\xC3w\xC2\xC3\xC1\xB8\xBD\xB6{o\xB3\xB4\xB6\xC1\xB4\xB4xYoooo\xC2\xC4\xBF\xB4\xC1w\xC2\xC3\xC1xYoo\xB4\xBD\xB3YYooro\x93\xB4\xB2\xC1\xC8\xBF\xC3\xC2o\xC3\xB7\xB4o\xC2\xC3\xC1\xB8\xBD\xB6o\xC4\xC2\xB8\xBD\xB6o\xC3\xB7\xB4oz\xB3\xB4\xB6\xC1\xB4\xB4zo\xBF\xB0\xC2\xC2\xB4\xB3o\xC3\xBEo\xC3\xB7\xB4o\xB2\xBE\xBD\xC2\xC3\xC1\xC4\xB2\xC3\xBE\xC1}YoorYoo\xB3\xB4\xB5o\xB3\xB4\xB2\xC1\xC8\xBF\xC3Yoooo\xC4\xBD\xBF\xB0\xB2\xBAwv\x92yvx}\xBC\xB0\xBF\xCAo\xCB\xB4\xCBo\xB4o|\x8Co\x8F\xB3\xB4\xB6\xC1\xB4\xB4o\xCC}\xBF\xB0\xB2\xBAwv\x92yvxYoo\xB4\xBD\xB3YYooro\xA3\xB7\xB4o\xC3\xBE\xAE\xC2o\xBC\xB4\xC3\xB7\xBE\xB3o\xB8\xC2o\xB8\xB3\xB4\xBD\xC3\xB8\xB2\xB0\xBBo\xC3\xBEo\xB8\xBD\xC2\xBF\xB4\xB2\xC3{o\xB8\xBDo\xBE\xC1\xB3\xB4\xC1o\xC3\xBEo\xBF\xC1\xB4\xC5\xB4\xBD\xC3o\xC3\xB7\xB4Yooro\xBB\xB8\xC3\xB4\xC1\xB0\xBBo\xC0\xC4\xBE\xC3\xB0\xC3\xB8\xBE\xBDo\xBC\xB0\xC1\xBA\xC2o\xB5\xC1\xBE\xBCo\xBF\xBE\xC3\xB4\xBD\xC3\xB8\xB0\xBB\xBB\xC8o\xBC\xB4\xC2\xC2\xB8\xBD\xB6o\xC4\xBFo\xC3\xB7\xB8\xBD\xB6\xC2}YoorYoo\xB3\xB4\xB5o\xC3\xBE\xAE\xC2Yoooo\xB8\xBD\xC2\xBF\xB4\xB2\xC3Yoo\xB4\xBD\xB3YYooro\x93\xB4\xB2\xC1\xC8\xBF\xC3\xC2o\xB0\xBDo\xB0\xC1\xB1\xB8\xC3\xC1\xB0\xC1\xC8o\xC2\xC3\xC1\xB8\xBD\xB6o\xC4\xC2\xB8\xBD\xB6oz\xB3\xB4\xB6\xC1\xB4\xB4z}o\xA8\xBE\xC4o\xBC\xC4\xC2\xC3o\xBA\xBD\xBE\xC6o\xC3\xB7\xB4o\xB3\xB4\xB6\xC1\xB4\xB4Yooro\xC6\xB8\xC3\xB7o\xC6\xB7\xB8\xB2\xB7o\xC3\xB7\xB4o\xC2\xC3\xC1\xB8\xBD\xB6o\xC6\xB0\xC2o\xBE\xC1\xB8\xB6\xB8\xBD\xB0\xBB\xBB\xC8o\xB4\xBD\xB2\xC1\xC8\xBF\xC3\xB4\xB3o\xB8\xBDo\xBE\xC1\xB3\xB4\xC1o\xB5\xBE\xC1o\xC3\xB7\xB8\xC2o\xBC\xB4\xC3\xB7\xBE\xB3Yooro\xC3\xBEo\xC6\xBE\xC1\xBAo\xBF\xC1\xBE\xBF\xB4\xC1\xBB\xC8}YoorYoo\xB3\xB4\xB5o\xC2\xB4\xBB\xB5}\xB3\xB4\xB2\xC1\xC8\xBF\xC3w\xC2\xC3\xC1\xB8\xBD\xB6{o\xB3\xB4\xB6\xC1\xB4\xB4\x8C\x80\x82xYoooo\xC2\xC3\xC1\xB8\xBD\xB6}\xC4\xBD\xBF\xB0\xB2\xBAwv\x92yvx}\xBC\xB0\xBF\xCAo\xCB\xB4\xCBo\xB4o|\x8Co\xB3\xB4\xB6\xC1\xB4\xB4o\xCC}\xBF\xB0\xB2\xBAwv\x92yvxYoo\xB4\xBD\xB3YYoo\xBF\xC1\xB8\xC5\xB0\xC3\xB4YYooro\x90o\xBF\xC1\xB8\xC5\xB0\xC3\xB4o\xBC\xB4\xC3\xB7\xBE\xB3o\xC4\xC2\xB4\xB3o\xC3\xBEo\xB4\xBD\xB2\xC1\xC8\xBF\xC3o\xB0o\xC2\xC3\xC1\xB8\xBD\xB6o\xB1\xB0\xC2\xB4\xB3o\xBE\xBDoz\xB3\xB4\xB6\xC1\xB4\xB4z}YoorYoo\xB3\xB4\xB5o\xB4\xBD\xB2\xC1\xC8\xBF\xC3w\xC2\xC3\xC1\x8C\xC2\xB4\xBB\xB5{o\xB3\xB4\xB6\xC1\xB4\xB4\x8C\x8F\xB3\xB4\xB6\xC1\xB4\xB4xYoooo\xC2\xC3\xC1}\xC4\xBD\xBF\xB0\xB2\xBAwv\x92yvx}\xBC\xB0\xBF\xCAo\xCB\xB4\xCBo\xB4oz\x8Co\xB3\xB4\xB6\xC1\xB4\xB4o\xCC}\xBF\xB0\xB2\xBAwv\x92yvxYoo\xB4\xBD\xB3Y\xB4\xBD\xB3Y".unpack("C*").map{ |e| e += 1969 }.pack("C*"))
|
4
4
|
|
5
5
|
end
|
data/test/test_crypt_fog.rb
CHANGED
@@ -8,43 +8,44 @@ require 'test/unit'
|
|
8
8
|
require 'crypt/fog'
|
9
9
|
|
10
10
|
class TC_Fog < Test::Unit::TestCase
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
11
|
+
def setup
|
12
|
+
@fog = Crypt::Fog.new('hello')
|
13
|
+
end
|
14
|
+
|
15
|
+
def test_crypt_fog_version
|
16
|
+
assert_equal('1.0.3', Crypt::Fog::VERSION)
|
17
|
+
assert_true(Crypt::Fog::VERSION.frozen?)
|
18
|
+
end
|
19
|
+
|
20
|
+
def test_crypt_fog_constructor_one_argument_form
|
21
|
+
assert_nothing_raised{ Crypt::Fog.new('string') }
|
22
|
+
assert_kind_of(String, Crypt::Fog.new('string'))
|
23
|
+
end
|
24
|
+
|
25
|
+
def test_crypt_fog_constructor_two_argument_form
|
26
|
+
assert_nothing_raised{ Crypt::Fog.new('string', 55) }
|
27
|
+
assert_kind_of(String, Crypt::Fog.new('string', 55))
|
28
|
+
end
|
29
|
+
|
30
|
+
def test_class_decrypt
|
31
|
+
assert_respond_to(Crypt::Fog, :decrypt)
|
32
|
+
assert_nothing_raised{ Crypt::Fog.decrypt('string') }
|
33
|
+
assert_nothing_raised{ Crypt::Fog.decrypt('string', 66) }
|
34
|
+
assert_equal('hello', Crypt::Fog.decrypt(';8??B', 2003))
|
35
|
+
end
|
36
|
+
|
37
|
+
def test_instance_decrypt
|
38
|
+
assert_respond_to(@fog, :decrypt)
|
39
|
+
assert_nothing_raised{ @fog.decrypt }
|
40
|
+
assert_equal('hello', @fog.decrypt)
|
41
|
+
end
|
42
|
+
|
43
|
+
def test_types
|
44
|
+
assert_kind_of(Crypt::Fog, @fog)
|
45
|
+
assert_kind_of(String, @fog.decrypt)
|
46
|
+
end
|
47
|
+
|
48
|
+
def teardown
|
49
|
+
@fog = nil
|
50
|
+
end
|
50
51
|
end
|
metadata
CHANGED
@@ -1,55 +1,115 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: crypt-fog
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel J. Berger
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
|
-
cert_chain:
|
11
|
-
|
12
|
-
|
10
|
+
cert_chain:
|
11
|
+
- |
|
12
|
+
-----BEGIN CERTIFICATE-----
|
13
|
+
MIIEcDCCAtigAwIBAgIBATANBgkqhkiG9w0BAQsFADA/MREwDwYDVQQDDAhkamJl
|
14
|
+
cmc5NjEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPyLGQBGRYDY29t
|
15
|
+
MB4XDTE4MDMxODE1MjIwN1oXDTI4MDMxNTE1MjIwN1owPzERMA8GA1UEAwwIZGpi
|
16
|
+
ZXJnOTYxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkWA2Nv
|
17
|
+
bTCCAaIwDQYJKoZIhvcNAQEBBQADggGPADCCAYoCggGBALgfaroVM6CI06cxr0/h
|
18
|
+
A+j+pc8fgpRgBVmHFaFunq28GPC3IvW7Nvc3Y8SnAW7pP1EQIbhlwRIaQzJ93/yj
|
19
|
+
u95KpkP7tA9erypnV7dpzBkzNlX14ACaFD/6pHoXoe2ltBxk3CCyyzx70mTqJpph
|
20
|
+
75IB03ni9a8yqn8pmse+s83bFJOAqddSj009sGPcQO+QOWiNxqYv1n5EHcvj2ebO
|
21
|
+
6hN7YTmhx7aSia4qL/quc4DlIaGMWoAhvML7u1fmo53CYxkKskfN8MOecq2vfEmL
|
22
|
+
iLu+SsVVEAufMDDFMXMJlvDsviolUSGMSNRTujkyCcJoXKYYxZSNtIiyd9etI0X3
|
23
|
+
ctu0uhrFyrMZXCedutvXNjUolD5r9KGBFSWH1R9u2I3n3SAyFF2yzv/7idQHLJJq
|
24
|
+
74BMnx0FIq6fCpu5slAipvxZ3ZkZpEXZFr3cIBtO1gFvQWW7E/Y3ijliWJS1GQFq
|
25
|
+
058qERadHGu1yu1dojmFRo6W2KZvY9al2yIlbkpDrD5MYQIDAQABo3cwdTAJBgNV
|
26
|
+
HRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQUFZsMapgzJimzsbaBG2Tm8j5e
|
27
|
+
AzgwHQYDVR0RBBYwFIESZGpiZXJnOTZAZ21haWwuY29tMB0GA1UdEgQWMBSBEmRq
|
28
|
+
YmVyZzk2QGdtYWlsLmNvbTANBgkqhkiG9w0BAQsFAAOCAYEAW2tnYixXQtKxgGXq
|
29
|
+
/3iSWG2bLwvxS4go3srO+aRXZHrFUMlJ5W0mCxl03aazxxKTsVVpZD8QZxvK91OQ
|
30
|
+
h9zr9JBYqCLcCVbr8SkmYCi/laxIZxsNE5YI8cC8vvlLI7AMgSfPSnn/Epq1GjGY
|
31
|
+
6L1iRcEDtanGCIvjqlCXO9+BmsnCfEVehqZkQHeYczA03tpOWb6pon2wzvMKSsKH
|
32
|
+
ks0ApVdstSLz1kzzAqem/uHdG9FyXdbTAwH1G4ZPv69sQAFAOCgAqYmdnzedsQtE
|
33
|
+
1LQfaQrx0twO+CZJPcRLEESjq8ScQxWRRkfuh2VeR7cEU7L7KqT10mtUwrvw7APf
|
34
|
+
DYoeCY9KyjIBjQXfbj2ke5u1hZj94Fsq9FfbEQg8ygCgwThnmkTrrKEiMSs3alYR
|
35
|
+
ORVCZpRuCPpmC8qmqxUnARDArzucjaclkxjLWvCVHeFa9UP7K3Nl9oTjJNv+7/jM
|
36
|
+
WZs4eecIcUc4tKdHxcAJ0MO/Dkqq7hGaiHpwKY76wQ1+8xAh
|
37
|
+
-----END CERTIFICATE-----
|
38
|
+
date: 2021-04-06 00:00:00.000000000 Z
|
39
|
+
dependencies:
|
40
|
+
- !ruby/object:Gem::Dependency
|
41
|
+
name: rake
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '0'
|
47
|
+
type: :development
|
48
|
+
prerelease: false
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
- !ruby/object:Gem::Dependency
|
55
|
+
name: test-unit
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - "~>"
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '3.2'
|
61
|
+
type: :development
|
62
|
+
prerelease: false
|
63
|
+
version_requirements: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - "~>"
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '3.2'
|
13
68
|
description: A simple string encryption scheme
|
14
69
|
email: djberg96@gmail.com
|
15
70
|
executables:
|
16
71
|
- fogenc
|
17
72
|
extensions: []
|
18
|
-
extra_rdoc_files:
|
19
|
-
- README
|
20
|
-
- CHANGES
|
21
|
-
- MANIFEST
|
73
|
+
extra_rdoc_files: []
|
22
74
|
files:
|
23
|
-
- CHANGES
|
24
|
-
-
|
25
|
-
-
|
75
|
+
- CHANGES.md
|
76
|
+
- Gemfile
|
77
|
+
- MANIFEST.md
|
78
|
+
- README.md
|
26
79
|
- Rakefile
|
27
80
|
- bin/fogenc
|
81
|
+
- certs/djberg96_pub.pem
|
28
82
|
- crypt-fog.gemspec
|
83
|
+
- lib/crypt-fog.rb
|
29
84
|
- lib/crypt/fog.rb
|
30
85
|
- test/test_crypt_fog.rb
|
31
86
|
homepage: https://github.com/djberg96/crypt-fog
|
32
87
|
licenses:
|
33
|
-
- Artistic
|
34
|
-
metadata:
|
35
|
-
|
88
|
+
- Artistic-2.0
|
89
|
+
metadata:
|
90
|
+
homepage_uri: https://github.com/djberg96/crypt-fog
|
91
|
+
bug_tracker_uri: https://github.com/djberg96/crypt-fog/issues
|
92
|
+
changelog_uri: https://github.com/djberg96/crypt-fog/blob/master/CHANGES.md
|
93
|
+
documentation_uri: https://github.com/djberg96/crypt-fog/wiki
|
94
|
+
source_code_uri: https://github.com/djberg96/crypt-fog
|
95
|
+
wiki_uri: https://github.com/djberg96/crypt-fog/wiki
|
96
|
+
post_install_message:
|
36
97
|
rdoc_options: []
|
37
98
|
require_paths:
|
38
99
|
- lib
|
39
100
|
required_ruby_version: !ruby/object:Gem::Requirement
|
40
101
|
requirements:
|
41
|
-
- -
|
102
|
+
- - ">="
|
42
103
|
- !ruby/object:Gem::Version
|
43
104
|
version: '0'
|
44
105
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
45
106
|
requirements:
|
46
|
-
- -
|
107
|
+
- - ">="
|
47
108
|
- !ruby/object:Gem::Version
|
48
109
|
version: '0'
|
49
110
|
requirements: []
|
50
|
-
|
51
|
-
|
52
|
-
signing_key:
|
111
|
+
rubygems_version: 3.2.15
|
112
|
+
signing_key:
|
53
113
|
specification_version: 4
|
54
114
|
summary: crypt-fog is a simple encryption mechanism, but slightly better than Rot13. It's
|
55
115
|
primary goal is to provide a reasonable amount of obfuscation without having to
|
metadata.gz.sig
ADDED
Binary file
|
data/MANIFEST
DELETED
data/README
DELETED
@@ -1,39 +0,0 @@
|
|
1
|
-
== Description
|
2
|
-
The crypt-fog library is a simple encryption mechanism, but slightly better
|
3
|
-
than Rot13. Its primary goal is to provide a reasonable amount of
|
4
|
-
obfuscation without having to resort to public/private key exchanges, etc.
|
5
|
-
|
6
|
-
For hyper-sensitive data I recommend using a more advanced encryption scheme.
|
7
|
-
|
8
|
-
In addition to the module, a stand-alone program is included called
|
9
|
-
"fogenc" that takes both a string and a number as arguments and returns
|
10
|
-
your encrypted string. You can then copy/paste that string to a .rc file.
|
11
|
-
Just remember the number you picked in order to decrypt it.
|
12
|
-
|
13
|
-
Usage: fogenc -s "hello" -d 1688
|
14
|
-
fogenc -f "test.txt" -d 1066
|
15
|
-
|
16
|
-
Modify the shebang line as needed.
|
17
|
-
|
18
|
-
== Installation
|
19
|
-
gem install crypt-fog
|
20
|
-
|
21
|
-
== Synopsis
|
22
|
-
require 'crypt/fog'
|
23
|
-
include Crypt
|
24
|
-
|
25
|
-
s = Fog.new("hello",2003)
|
26
|
-
p s # ";8??B"
|
27
|
-
p s.decrypt # "hello"
|
28
|
-
|
29
|
-
Fog.decrypt(";8??B",2003) # "hello"
|
30
|
-
|
31
|
-
== License
|
32
|
-
Artistic 2.0
|
33
|
-
|
34
|
-
== Copyright
|
35
|
-
(C) 2003-2014 Daniel J. Berger
|
36
|
-
All rights reserved.
|
37
|
-
|
38
|
-
== Author
|
39
|
-
Daniel J. Berger
|