Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update for AES192/256 addition to underlying fernet gem. #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,5 @@ test/tmp
test/version_tmp
tmp
.rbenv-version
.ruby-version
.ruby-gemset
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ available from the shell!

```
tmaher@og-kush:~$ gem install fernet-cli
Fetching: fernet-cli-0.4.gem (100%)
Successfully installed fernet-cli-0.4
Parsing documentation for fernet-cli-0.4
Installing ri documentation for fernet-cli-0.4
Fetching: fernet-cli-0.6.gem (100%)
Successfully installed fernet-cli-0.6
Parsing documentation for fernet-cli-0.6
Installing ri documentation for fernet-cli-0.6
Done installing documentation for fernet-cli after 0 seconds
1 gem installed
tmaher@og-kush:~$ fernet-encrypt --help
Expand All @@ -23,7 +23,8 @@ Usage: fernet-encrypt [-p | -k <keyfile>] -i <infile> -o <outfile>
```

And there's a corresponding `fernet-decrypt` too. The key should be a
base64-encoded blob of 256-bits. If you'd rather not write it out to
base64-encoded blob of 256, 384 or 512 bits depending on the strength
of AES encryption you wish to use. If you'd rather not write it out to
a file or get promted for it, you can save it to shell environment
variable `FERNET_CLI_KEY`.

Expand Down
6 changes: 3 additions & 3 deletions fernet-cli.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
require File.expand_path('../lib/fernet/cli/version', __FILE__)

Gem::Specification.new do |gem|
gem.authors = ["Tom Maher"]
gem.email = ["[email protected]"]
gem.authors = ["Tom Maher", "Todd Knarr"]
gem.email = ["[email protected]", "[email protected]"]
gem.description = "CLI for Fernet"
gem.summary = "Work with Fernet-encrypted files in the command line"
gem.homepage = "https://github.com/tmaher/fernet-cli"
Expand All @@ -16,7 +16,7 @@ Gem::Specification.new do |gem|
gem.version = Fernet::CLI::VERSION
gem.license = "Apache-2.0"

gem.add_runtime_dependency "fernet", "~> 2.0"
gem.add_runtime_dependency "fernet", "~> 3.0"
gem.add_runtime_dependency "highline", "~> 1.6"
gem.add_development_dependency "rspec", "~> 2.14"
end
2 changes: 1 addition & 1 deletion lib/fernet/cli/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Fernet
module CLI
VERSION = "0.5"
VERSION = "0.6"
end
end
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.0
0.2.0