password_hasher 1.0.0 → 1.0.1

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: f3fa1b45bff1f973c7aeec8774e852e09d1719f9
4
- data.tar.gz: 39ccf524f47368c0985619d1416daceaf7628480
3
+ metadata.gz: a654a6da28867505d6514ac7c1b9f18a7e36b0ea
4
+ data.tar.gz: 4b55549df21178cc3d50ce204898403b4d7c515e
5
5
  SHA512:
6
- metadata.gz: a090b5fe7d6210fad8519cc49dd39edb475a0807e66d36d27037c178bc7359eaac5db1427986611f363f00825020ad48041b672f1c3cee398a03429ac0fa2406
7
- data.tar.gz: 2f34c8931f64421a4547cb0baaa4b564170d83aafaa9059e5c0c1ecf5b82c795d42b7f0d8c60caeff27fcabeff6d9e326b9ac40ceb79b13d5279520d2eb66b45
6
+ metadata.gz: 379ccb9e7b3cc8fe84901195650130ead8948bb429ecae55164f9f61244f8bfb7020aca52a71abecbfc4285d130a5e2c8b6bcdaf3e29fba2692430b375890cc1
7
+ data.tar.gz: c33f14a379f42ea15b4a67d8a08874ee9493d71990663bc37a901c847608aa72d5686b3f951a0f9fde68c3857ad1ff2f8ceb685e45ab0c949889f53876d85f9b
data/README.md CHANGED
@@ -21,7 +21,7 @@ Or install it yourself as:
21
21
  password = "goodpass"
22
22
  hashed_password = PasswordHasher.hash_password(password)
23
23
  #hashed_password == something like "sha1:1000:9NYDQj80ksetV+0uW/6VAJwXKTGDqKyv:SnRzqabSk/Kpmb9C109NIv+zbHArz4kg"
24
- validated = PasswordHasher.validate_password("goodpass", hashed_password)
24
+ validated = PasswordHasher.validate_password(password, hashed_password)
25
25
  #validated == true
26
26
  ```
27
27
 
@@ -1,3 +1,3 @@
1
1
  module PasswordHasher
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
11
11
 
12
12
  spec.summary = %q{Simple password hashing library.}
13
13
  spec.description = %q{This gem was made from a preexisting library. I did not write the code. I just made it a gem so I could share it between projects.}
14
- spec.homepage = "https://crackstation.net/hashing-security.htm"
14
+ spec.homepage = "https://github.com/riggleg/password_hasher"
15
15
  spec.license = "MIT"
16
16
 
17
17
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: password_hasher
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Taylor Hornby
@@ -57,7 +57,7 @@ files:
57
57
  - lib/password_hasher.rb
58
58
  - lib/password_hasher/version.rb
59
59
  - password_hasher.gemspec
60
- homepage: https://crackstation.net/hashing-security.htm
60
+ homepage: https://github.com/riggleg/password_hasher
61
61
  licenses:
62
62
  - MIT
63
63
  metadata: {}