TODO: Write a gem description
Add this line to your application's Gemfile:
gem 'auric-vault-door'
And then execute:
$ bundle
Or install it yourself as:
$ gem install auric-vault-door
It now expects a hash or arguments when being created: args = {secret: 'shared_secret_goes_here', mtid: 'merchant_id', config_id: 'config_id', segment: '123'} #optional: production: true, defaults to false
@door = Auric::Vault::Door.new(args)
@door.encrypt('string_to_encrypt') => 'dpFAl7BY260IWzFxxxx'
@door.decrypt('dpFAl7BY260IWzFxxxx') => 'string_to_encrypt'
If either method fails, checking error should return a string about what went wrong:
@door.error => "VLT-112: This method is missing the following fields. Method: decrypt [token]"
TODO: Only encrypt and decrypt methods are currently implemented. Better error error handling Tests.
- Fork it ( https://github.com/[my-github-username]/auric-vault-door/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request