time_sensitive_hmac 0.0.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.
- data/.gitignore +18 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +13 -0
- data/README.md +29 -0
- data/Rakefile +5 -0
- data/lib/time_sensitive_hmac.rb +6 -0
- data/lib/time_sensitive_hmac/signature.rb +55 -0
- data/lib/time_sensitive_hmac/version.rb +3 -0
- data/spec/spec_helper.rb +7 -0
- data/spec/time_sensitive_hmac_spec.rb +55 -0
- data/time_sensitive_hmac.gemspec +26 -0
- metadata +112 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
Copyright (c) 2013 Rob Howard
|
2
|
+
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
you may not use this file except in compliance with the License.
|
5
|
+
You may obtain a copy of the License at
|
6
|
+
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
See the License for the specific language governing permissions and
|
13
|
+
limitations under the License.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# TimeSensitiveHmac
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'time_sensitive_hmac'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install time_sensitive_hmac
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
require 'base64'
|
2
|
+
require 'openssl'
|
3
|
+
|
4
|
+
module TimeSensitiveHmac
|
5
|
+
class Signature
|
6
|
+
|
7
|
+
attr_reader :secret, :digest
|
8
|
+
|
9
|
+
def initialize(secret, opts={})
|
10
|
+
@secret = secret
|
11
|
+
@digest = OpenSSL::Digest::Digest.new(
|
12
|
+
opts[:digest] || 'sha256'
|
13
|
+
)
|
14
|
+
end
|
15
|
+
|
16
|
+
def generate(time, data, context=nil)
|
17
|
+
raw = OpenSSL::HMAC.digest(
|
18
|
+
digest,
|
19
|
+
secret,
|
20
|
+
data_from_parts(time, context, data)
|
21
|
+
)
|
22
|
+
encode(raw)
|
23
|
+
end
|
24
|
+
|
25
|
+
def verify(sig, time, data, context=nil, grace_period_in_seconds=0)
|
26
|
+
# TODO: grace period
|
27
|
+
# Take inspiration from HOTP (RFC 4226) for time intervals:
|
28
|
+
# http://tools.ietf.org/html/rfc4226#page-35
|
29
|
+
check_sig = generate(time, data, context)
|
30
|
+
sig == check_sig
|
31
|
+
end
|
32
|
+
|
33
|
+
def verify_now(sig, data, context=nil, grace_period_in_seconds=0)
|
34
|
+
verify(sig, Time.now, context, grace_period_in_seconds)
|
35
|
+
end
|
36
|
+
|
37
|
+
protected
|
38
|
+
|
39
|
+
def encode(input)
|
40
|
+
# encode64 includes a trailing \n.
|
41
|
+
input && Base64.encode64(input).strip
|
42
|
+
end
|
43
|
+
|
44
|
+
def data_from_parts(time, context, data)
|
45
|
+
[time.utc.to_i, encode(context), encode(data)].compact.join(':')
|
46
|
+
end
|
47
|
+
|
48
|
+
def normalise_to_time_class(time)
|
49
|
+
unless time.is_a? Time
|
50
|
+
time = Time.at(time.to_i)
|
51
|
+
end
|
52
|
+
time
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe TimeSensitiveHmac do
|
4
|
+
let(:secret) { 'abcd' * 8 }
|
5
|
+
|
6
|
+
context "instantiating" do
|
7
|
+
it "defaults to SHA256" do
|
8
|
+
sig = TimeSensitiveHmac::Signature.new(secret)
|
9
|
+
sig.digest.name.should == 'SHA256'
|
10
|
+
end
|
11
|
+
|
12
|
+
it "accepts any valid OpenSSL::Digest type" do
|
13
|
+
sig = TimeSensitiveHmac::Signature.new(secret, :digest => 'sha1')
|
14
|
+
sig.digest.name.should == 'SHA1'
|
15
|
+
end
|
16
|
+
|
17
|
+
it "assumes OpenSSL will reject default digest types" do
|
18
|
+
-> {
|
19
|
+
TimeSensitiveHmac::Signature.new(secret, :digest => 'sha666')
|
20
|
+
}.should raise_error(RuntimeError)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
context "generating" do
|
25
|
+
let!(:now) { Time.utc(2013,1,1) }
|
26
|
+
let(:signature) { TimeSensitiveHmac::Signature.new(secret) }
|
27
|
+
|
28
|
+
it "generates with a time and data chunk" do
|
29
|
+
digest = signature.generate(now, '{"sample"=>"data"}')
|
30
|
+
digest.should == 'qDdAbSFV3/oDpmD10L0LySWZugYbzbCKxyZ7Z9Nd0RY='
|
31
|
+
end
|
32
|
+
|
33
|
+
it "generates with time, data, and a URL path context" do
|
34
|
+
digest = signature.generate(
|
35
|
+
now,
|
36
|
+
'{"sample"=>"data"}',
|
37
|
+
'/path/with?query=string'
|
38
|
+
)
|
39
|
+
digest.should == 'Wq+9pR/thhyUz0rTFHj4CxGQPGT271ZEJMdDSMPeucg='
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
context "verification at exact moments" do
|
44
|
+
pending "verifies signatures with valid data"
|
45
|
+
pending "verifies signatures with a valid data and context pair"
|
46
|
+
pending "fails invalid signatures"
|
47
|
+
end
|
48
|
+
|
49
|
+
context "verification with grace period" do
|
50
|
+
pending "verifies signatures with valid data"
|
51
|
+
pending "verifies signatures with a valid data and context pair"
|
52
|
+
pending "fails invalid signatures"
|
53
|
+
pending "fails valid signatures outside of the grace period"
|
54
|
+
end
|
55
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'time_sensitive_hmac/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "time_sensitive_hmac"
|
8
|
+
spec.version = TimeSensitiveHmac::VERSION
|
9
|
+
spec.authors = ["Rob Howard"]
|
10
|
+
spec.email = ["rob@robhoward.id.au"]
|
11
|
+
spec.description = %q{A tiny library for calculation and verification of HMAC signatures bound to a particular time.}
|
12
|
+
spec.summary = spec.description
|
13
|
+
spec.homepage = ""
|
14
|
+
spec.license = "Apache 2.0"
|
15
|
+
|
16
|
+
spec.required_ruby_version = '>= 1.9.2'
|
17
|
+
|
18
|
+
spec.files = `git ls-files`.split($/)
|
19
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
20
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
21
|
+
spec.require_paths = ["lib"]
|
22
|
+
|
23
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
24
|
+
spec.add_development_dependency "rake"
|
25
|
+
spec.add_development_dependency "rspec"
|
26
|
+
end
|
metadata
ADDED
@@ -0,0 +1,112 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: time_sensitive_hmac
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Rob Howard
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-04-08 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: bundler
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '1.3'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.3'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: rake
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
type: :development
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: rspec
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ! '>='
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
description: A tiny library for calculation and verification of HMAC signatures bound
|
63
|
+
to a particular time.
|
64
|
+
email:
|
65
|
+
- rob@robhoward.id.au
|
66
|
+
executables: []
|
67
|
+
extensions: []
|
68
|
+
extra_rdoc_files: []
|
69
|
+
files:
|
70
|
+
- .gitignore
|
71
|
+
- Gemfile
|
72
|
+
- LICENSE.txt
|
73
|
+
- README.md
|
74
|
+
- Rakefile
|
75
|
+
- lib/time_sensitive_hmac.rb
|
76
|
+
- lib/time_sensitive_hmac/signature.rb
|
77
|
+
- lib/time_sensitive_hmac/version.rb
|
78
|
+
- spec/spec_helper.rb
|
79
|
+
- spec/time_sensitive_hmac_spec.rb
|
80
|
+
- time_sensitive_hmac.gemspec
|
81
|
+
homepage: ''
|
82
|
+
licenses:
|
83
|
+
- Apache 2.0
|
84
|
+
post_install_message:
|
85
|
+
rdoc_options: []
|
86
|
+
require_paths:
|
87
|
+
- lib
|
88
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - ! '>='
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: 1.9.2
|
94
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
95
|
+
none: false
|
96
|
+
requirements:
|
97
|
+
- - ! '>='
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '0'
|
100
|
+
segments:
|
101
|
+
- 0
|
102
|
+
hash: 433686917233539613
|
103
|
+
requirements: []
|
104
|
+
rubyforge_project:
|
105
|
+
rubygems_version: 1.8.23
|
106
|
+
signing_key:
|
107
|
+
specification_version: 3
|
108
|
+
summary: A tiny library for calculation and verification of HMAC signatures bound
|
109
|
+
to a particular time.
|
110
|
+
test_files:
|
111
|
+
- spec/spec_helper.rb
|
112
|
+
- spec/time_sensitive_hmac_spec.rb
|