smaak 0.0.9 → 0.0.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +8 -0
- data/lib/smaak/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a06ce9d26d15fda320f1c294b584a16c8cd1006d
|
4
|
+
data.tar.gz: 9b04495475ec21d1ff6f33625f30978cc1e823b0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 165f5d90ce01a893cb9c7cf8464edebe13c3ffdb420efaed98ccc96c410fb1380b572988ec130f91749853b6136d0448fada87f196295a0fc487ae8b3b147d5d
|
7
|
+
data.tar.gz: f50c7a2da3b77aab667bcca1081b6eae07392cea03a36050f9a119f3edd964859b3298267c9a172eb200abd9c0ea9a2fa0a8440a5e79963c90ae621630c2eeb1
|
data/README.md
CHANGED
@@ -2,6 +2,8 @@
|
|
2
2
|
|
3
3
|
This gems caters for both client and server sides of a signed message interaction over HTTP or HTTPS implementing the RFC2617 Digest Access Authentication. The following compromises are protected against as specified: Man in the middle (header and payload signature- see 'Extending') / snooping (HTTPS turned on), Replay (nonce + expires), Forgery (signature), Masquerading (recipient pub key check), Clear-text password compromise (MD5 pre-shared key)
|
4
4
|
|
5
|
+
This gem is sponsored by Hetzner (Pty) Ltd - http://hetzner.co.za
|
6
|
+
|
5
7
|
## Installation
|
6
8
|
|
7
9
|
Add this line to your application's Gemfile:
|
@@ -64,6 +66,12 @@ Inject your certs and pre-shared keys from the environment, or configuration fil
|
|
64
66
|
|
65
67
|
## Contributing
|
66
68
|
|
69
|
+
Please send feedback and comments to the author at:
|
70
|
+
|
71
|
+
Ernst van Graan <ernst.van.graan@hetzner.co.za>
|
72
|
+
|
73
|
+
Thanks to Sheldon Hearn for review and great ideas that unblocked complex challenges (https://rubygems.org/profiles/sheldonh).
|
74
|
+
|
67
75
|
1. Fork it
|
68
76
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
69
77
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
data/lib/smaak/version.rb
CHANGED