cram_md5 0.0.6 → 0.0.7
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.
- data/LICENSE +2 -2
- data/README.md +2 -2
- data/cram_md5.gemspec +1 -1
- data/lib/cram_md5/version.rb +1 -1
- metadata +4 -3
data/LICENSE
CHANGED
|
@@ -18,8 +18,8 @@ Last edit: Tue, 13 September 2012 17:05:28 -0300 GMT
|
|
|
18
18
|
|
|
19
19
|
USAGE
|
|
20
20
|
|
|
21
|
-
cryptedpassword = CramMd5::
|
|
22
|
-
apachepassword = CramMd5::
|
|
21
|
+
cryptedpassword = CramMd5::unix_md5_crypt (password [, salt [, magicstring ])
|
|
22
|
+
apachepassword = CramMd5::apache_md5_crypt (password [, salt])
|
|
23
23
|
|
|
24
24
|
DESCRIPTION
|
|
25
25
|
|
data/README.md
CHANGED
|
@@ -20,9 +20,9 @@ Or install it yourself as:
|
|
|
20
20
|
|
|
21
21
|
## Usage
|
|
22
22
|
|
|
23
|
-
cryptedpassword = CramMd5::
|
|
23
|
+
cryptedpassword = CramMd5::unix_md5_crypt (password [, salt [, magicstring ])
|
|
24
24
|
|
|
25
|
-
apachepassword = CramMd5::
|
|
25
|
+
apachepassword = CramMd5::apache_md5_crypt (password [, salt])
|
|
26
26
|
|
|
27
27
|
## Contributing
|
|
28
28
|
|
data/cram_md5.gemspec
CHANGED
|
@@ -3,7 +3,7 @@ require File.expand_path('../lib/cram_md5/version', __FILE__)
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |gem|
|
|
5
5
|
gem.authors = ["Thiago Coutinho"]
|
|
6
|
-
gem.email = ["thiago
|
|
6
|
+
gem.email = ["thiago@osfeio.com"]
|
|
7
7
|
gem.description = %q{
|
|
8
8
|
unix_md5_crypt() provides a crypt()-compatible interface to the
|
|
9
9
|
rather old MD5-based crypt() function found in modern operating systems
|
data/lib/cram_md5/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cram_md5
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.7
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,13 +9,13 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2013-02-22 00:00:00.000000000Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: ! "\n unix_md5_crypt() provides a crypt()-compatible interface to the\n
|
|
15
15
|
\ rather old MD5-based crypt() function found in modern operating systems\n using
|
|
16
16
|
old and solid libs."
|
|
17
17
|
email:
|
|
18
|
-
- thiago
|
|
18
|
+
- thiago@osfeio.com
|
|
19
19
|
executables: []
|
|
20
20
|
extensions: []
|
|
21
21
|
extra_rdoc_files: []
|
|
@@ -52,3 +52,4 @@ signing_key:
|
|
|
52
52
|
specification_version: 3
|
|
53
53
|
summary: unix_md5_crypt CRAM-MD5 or Crypt MD5
|
|
54
54
|
test_files: []
|
|
55
|
+
has_rdoc:
|