crypt 2.2.0 → 2.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CREDITS +13 -0
- data/LICENSE +6 -0
- data/README +10 -0
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 07de2fdabf4cc3650b826ccac32ac579233f4af0
|
4
|
+
data.tar.gz: de13a85d6748f2a22fb8bdc52db8d1ae976f4242
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4690385b4b75cb6b991fa28ba778680efc3593af479be399ce2792f5d0ab7035fb7bf38ee3d2be443f34b1b545ac5e01a04f3a99d165d4f3d1c359be7e2c09e8
|
7
|
+
data.tar.gz: 63a59b1f09d8d8cd298f936960b4a7cca07e71a343a7a1f89342fec3f3cb452af7f14394292e12789f39ba65d4ac9aca78a9e8084da5bc87e449471c0dfbeb43
|
data/CREDITS
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# CREDITS
|
2
|
+
|
3
|
+
The Blowfish code was adapted from Bruce Schneier's reference C code
|
4
|
+
(http://www.schneier.com/blowfish-download.html)
|
5
|
+
|
6
|
+
The GOST code was adapted from Wei Dai's C++ code from the Crypto++ project
|
7
|
+
(http://sourceforge.net/projects/cryptopp).
|
8
|
+
|
9
|
+
The IDEA code was based on the reference C implementation once published by MediaCrypt
|
10
|
+
(http://web.archive.org/web/20000816173624/www.ascom.ch/infosec/downloads.html)
|
11
|
+
|
12
|
+
The Rijndael code was adapted from the reference ANSI C code by Paulo Barreto and Vincent Rijmen.
|
13
|
+
(http://www.esat.kuleuven.ac.be/~rijmen/rijndael/rijndael-fst-3.0.zip)
|
data/LICENSE
ADDED
data/README
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
# README
|
2
|
+
|
3
|
+
The Crypt library is a pure-ruby implementation of a number of popular
|
4
|
+
encryption algorithms. Block cyphers currently include Blowfish, GOST, IDEA,
|
5
|
+
and Rijndael (AES). Cypher Block Chaining (CBC) has been implemented.
|
6
|
+
|
7
|
+
Crypt is written entirely in ruby so deployment is simple - no platform
|
8
|
+
concerns, no library dependencies, nothing to compile.
|
9
|
+
|
10
|
+
This work is placed in the public domain.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: crypt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Richard Kernahan
|
@@ -19,6 +19,9 @@ executables: []
|
|
19
19
|
extensions: []
|
20
20
|
extra_rdoc_files: []
|
21
21
|
files:
|
22
|
+
- CREDITS
|
23
|
+
- LICENSE
|
24
|
+
- README
|
22
25
|
- lib/crypt/blowfish-tables.rb
|
23
26
|
- lib/crypt/blowfish.rb
|
24
27
|
- lib/crypt/cbc.rb
|
@@ -39,7 +42,7 @@ metadata: {}
|
|
39
42
|
post_install_message:
|
40
43
|
rdoc_options: []
|
41
44
|
require_paths:
|
42
|
-
-
|
45
|
+
- lib
|
43
46
|
required_ruby_version: !ruby/object:Gem::Requirement
|
44
47
|
requirements:
|
45
48
|
- - ">="
|