cryptor 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 6d16ee7c972557dd058f1dde956dc26468745945
4
+ data.tar.gz: 4a565ea41bdc11b9f82f016a9a1baa6312e8eaeb
5
+ SHA512:
6
+ metadata.gz: b1db40bfb00bad3f7c56afe50f6eac57c5f8cab5bb7f1c35385a25bfbecc550da573f953f6b88a92a0cbb3cf4b1db2d49f2e8ca533f8a96c9de555c426e36333
7
+ data.tar.gz: cfc0a795458ea5a03f58a02dd8b6aa4a80e7726d642a84f0132bf25428b3023305e4c95ad2ec0b032a43c050b1afb255e8e33a9deb59eed7c00e086fc5ee5ca8
data/.gitignore ADDED
@@ -0,0 +1,22 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
data/.rspec ADDED
@@ -0,0 +1,5 @@
1
+ --color
2
+ --format documentation
3
+ --backtrace
4
+ --order random
5
+ --warnings
data/.rubocop.yml ADDED
@@ -0,0 +1,2 @@
1
+ LineLength:
2
+ Max: 99
data/.travis.yml ADDED
@@ -0,0 +1,17 @@
1
+ rvm:
2
+ - 1.9.3
3
+ - 2.0.0
4
+ - 2.1.1
5
+ - ruby-head
6
+ - jruby
7
+ - jruby-head
8
+ - rbx-2
9
+
10
+ matrix:
11
+ allow_failures:
12
+ - rvm: ruby-head
13
+ - rvm: jruby-head
14
+ - rvm: rbx-2
15
+
16
+ notifications:
17
+ irc: "irc.freenode.org#cryptosphere"
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in cryptor.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Tony Arcieri
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,49 @@
1
+ ![CRYPTAUR](https://raw.githubusercontent.com/cryptosphere/cryptor/master/cryptosaur.png)
2
+ Cryptor
3
+ =======
4
+
5
+ A safe Ruby encryption library, designed to support features like multiple
6
+ active encryption keys and key rotation.
7
+
8
+ Cryptor uses [authenticated encryption] *exclusively*, ensuring your data
9
+ remains untamered with, even when it's in the hands of an attacker.
10
+
11
+ Cryptor supports two backends:
12
+
13
+ * [ActiveSupport::MessageEncryptor] (Rails 4+): a bespoke authenticated
14
+ encryption scheme provided by Rails, based on AES-CBC and HMAC.
15
+ * [RbNaCl::SimpleBox]: authenticated symmetric encryption based on
16
+ XSalsa20+Poly1305 from libsodium.
17
+
18
+ [authenticated encryption]: https://en.wikipedia.org/wiki/Authenticated_encryption
19
+ [ActiveSupport::MessageEncryptor]: http://api.rubyonrails.org/classes/ActiveSupport/MessageEncryptor.html
20
+ [RbNaCl::SimpleBox]: https://github.com/cryptosphere/rbnacl/wiki/SimpleBox
21
+
22
+ ## Installation
23
+
24
+ Add this line to your application's Gemfile:
25
+
26
+ gem 'cryptor'
27
+
28
+ And then execute:
29
+
30
+ $ bundle
31
+
32
+ Or install it yourself as:
33
+
34
+ $ gem install cryptor
35
+
36
+ ## Usage
37
+
38
+ TODO: Write usage instructions here
39
+
40
+ ## Contributing
41
+
42
+ * Fork this repository on Github
43
+ * Make your changes and send a pull request
44
+ * If your changes look good, we'll merge 'em
45
+
46
+ ## License
47
+
48
+ Copyright (c) 2014 Tony Arcieri.
49
+ Distributed under the MIT License. See LICENSE.txt for further details.
data/Rakefile ADDED
@@ -0,0 +1,5 @@
1
+ require 'bundler/gem_tasks'
2
+
3
+ Dir[File.expand_path('../tasks/**/*.rake', __FILE__)].each { |task| load task }
4
+
5
+ task default: :rubocop
data/cryptor.gemspec ADDED
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'cryptor/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'cryptor'
8
+ spec.version = Cryptor::VERSION
9
+ spec.authors = ['Tony Arcieri']
10
+ spec.email = ['bascule@gmail.com']
11
+ spec.summary = 'An easy-to-use library for real-world Ruby cryptography'
12
+ spec.description = 'A safe Ruby encryption library, designed to support features like' \
13
+ 'multiple active encryption keys and key rotation'
14
+ spec.homepage = 'https://github.com/cryptosphere/cryptor'
15
+ spec.license = 'MIT'
16
+
17
+ spec.files = `git ls-files -z`.split("\x0")
18
+ spec.executables = spec.files.grep(/^bin\//) { |f| File.basename(f) }
19
+ spec.test_files = spec.files.grep(/^(test|spec|features)\//)
20
+ spec.require_paths = ['lib']
21
+
22
+ spec.add_runtime_dependency 'rbnacl-libsodium'
23
+
24
+ spec.add_development_dependency 'bundler', '~> 1.6'
25
+ spec.add_development_dependency 'rake'
26
+ spec.add_development_dependency 'rubocop'
27
+ end
data/cryptosaur.png ADDED
Binary file
data/lib/cryptor.rb ADDED
@@ -0,0 +1,6 @@
1
+ require 'cryptor/version'
2
+
3
+ # An easy-to-use library for real-world Ruby cryptography
4
+ module Cryptor
5
+ # Your code goes here...
6
+ end
@@ -0,0 +1,4 @@
1
+ # An easy-to-use library for real-world Ruby cryptography
2
+ module Cryptor
3
+ VERSION = '0.0.0'
4
+ end
@@ -0,0 +1,3 @@
1
+ require 'rubocop/rake_task'
2
+
3
+ Rubocop::RakeTask.new
metadata ADDED
@@ -0,0 +1,114 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cryptor
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Tony Arcieri
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-05-17 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rbnacl-libsodium
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.6'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.6'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rubocop
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: A safe Ruby encryption library, designed to support features likemultiple
70
+ active encryption keys and key rotation
71
+ email:
72
+ - bascule@gmail.com
73
+ executables: []
74
+ extensions: []
75
+ extra_rdoc_files: []
76
+ files:
77
+ - ".gitignore"
78
+ - ".rspec"
79
+ - ".rubocop.yml"
80
+ - ".travis.yml"
81
+ - Gemfile
82
+ - LICENSE.txt
83
+ - README.md
84
+ - Rakefile
85
+ - cryptor.gemspec
86
+ - cryptosaur.png
87
+ - lib/cryptor.rb
88
+ - lib/cryptor/version.rb
89
+ - tasks/rubocop.rake
90
+ homepage: https://github.com/cryptosphere/cryptor
91
+ licenses:
92
+ - MIT
93
+ metadata: {}
94
+ post_install_message:
95
+ rdoc_options: []
96
+ require_paths:
97
+ - lib
98
+ required_ruby_version: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ required_rubygems_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: '0'
108
+ requirements: []
109
+ rubyforge_project:
110
+ rubygems_version: 2.2.2
111
+ signing_key:
112
+ specification_version: 4
113
+ summary: An easy-to-use library for real-world Ruby cryptography
114
+ test_files: []