A gem that helps Ruby applications exchange encrypted data with ColdFusion.
Add this line to your application's Gemfile:
gem 'cf_crypto'
And then execute:
$ bundle
Or install it yourself as:
$ gem install cf_crypto
AES: the Advanced Encryption Standard specified by the National Institute of Standards and Technology (NIST) FIPS-197.
Not yet supported.
Not yet supported.
CfCrypto::DES.encrypt(string, key)
- string (required): a string to be encrypted
- key (required): key to be used by DES for encryption
CfCrypto::DES.decrypt(string, key)
- string (required): a string to be decrypted
- key (required): key to be used by DES for decryption
Not yet supported.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request