底锁
Underlock使加密和解密数据和文件变得非常简单。 它几乎没有依赖性,并且具有非常小的API界面。
安装
将此行添加到您的应用程序的Gemfile中:
gem 'underlock'
然后执行:
$ bundle
或将其自己安装为:
$ gem install underlock
初始化
Underlock :: Base . configure do | config |
config . public_key = File . read ( './key.pub' )
config . private_key = File . read ( './key.priv' )
config . cipher = OpenSSL :: Cipher . new ( 'aes-256-gcm' )
end
对于config.cipher值,支持Open
评论0