unix-crypt 1.3.0 → 1.3.1
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
- data/lib/unix_crypt/command_line.rb +1 -0
- data/lib/unix_crypt.rb +1 -1
- data/unix-crypt.gemspec +1 -2
- metadata +10 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 3a25cf2ac4b52a21022fa17c007fb4afe510707c0c13e1889a2783495061117a
|
4
|
+
data.tar.gz: b896276d4437e1719c9cf87d3f2dfd5d743bc76b86169bcff2651950e0348a51
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a5d909a92ab8dd1e41f7ed2feac2b9541987d7728d573c36701e7d7b89337eeda4dbffa1016b2787e9689d762affff0b65fdb502a0ebff467a917433667a5c78
|
7
|
+
data.tar.gz: fedd94d45e8eee5f619082ad0a67068a70677a73e6a93d50433ef66a11b4e7760b6e494dedc769453156b7d9b17b0dde9067c49bb85df0edd7fc47b4ce84597b
|
data/lib/unix_crypt.rb
CHANGED
data/unix-crypt.gemspec
CHANGED
@@ -12,9 +12,8 @@ spec = Gem::Specification.new do |s|
|
|
12
12
|
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
13
13
|
s.executables = ["mkunixcrypt"]
|
14
14
|
s.require_path = 'lib'
|
15
|
-
s.has_rdoc = false
|
16
15
|
s.author = "Roger Nesbitt"
|
17
16
|
s.email = "roger@seriousorange.com"
|
18
17
|
s.homepage = "https://github.com/mogest/unix-crypt"
|
19
|
-
s.license = "
|
18
|
+
s.license = "0BSD"
|
20
19
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: unix-crypt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Roger Nesbitt
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-04-09 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Performs the UNIX crypt(3) algorithm using DES (standard 13 character
|
14
14
|
passwords), MD5 (starting with $1$), SHA256 (starting with $5$) and SHA512 (starting
|
@@ -19,7 +19,7 @@ executables:
|
|
19
19
|
extensions: []
|
20
20
|
extra_rdoc_files: []
|
21
21
|
files:
|
22
|
-
- .gitignore
|
22
|
+
- ".gitignore"
|
23
23
|
- LICENSE
|
24
24
|
- README.rdoc
|
25
25
|
- Rakefile
|
@@ -35,26 +35,25 @@ files:
|
|
35
35
|
- unix-crypt.gemspec
|
36
36
|
homepage: https://github.com/mogest/unix-crypt
|
37
37
|
licenses:
|
38
|
-
-
|
38
|
+
- 0BSD
|
39
39
|
metadata: {}
|
40
|
-
post_install_message:
|
40
|
+
post_install_message:
|
41
41
|
rdoc_options: []
|
42
42
|
require_paths:
|
43
43
|
- lib
|
44
44
|
required_ruby_version: !ruby/object:Gem::Requirement
|
45
45
|
requirements:
|
46
|
-
- -
|
46
|
+
- - ">="
|
47
47
|
- !ruby/object:Gem::Version
|
48
48
|
version: '0'
|
49
49
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
50
50
|
requirements:
|
51
|
-
- -
|
51
|
+
- - ">="
|
52
52
|
- !ruby/object:Gem::Version
|
53
53
|
version: '0'
|
54
54
|
requirements: []
|
55
|
-
|
56
|
-
|
57
|
-
signing_key:
|
55
|
+
rubygems_version: 3.3.7
|
56
|
+
signing_key:
|
58
57
|
specification_version: 4
|
59
58
|
summary: Performs the UNIX crypt(3) algorithm using DES, MD5, SHA256 or SHA512
|
60
59
|
test_files:
|