RSA Ruby累加器
基于Ruby中强大的RSA假设密码累加器。
安装
将此行添加到您的应用程序的Gemfile中:
gem 'rsa-accumulator'
然后执行:
$ bundle
或将其自己安装为:
$ gem install rsa-accumulator
用法
设置累加器
首先,初始化累加器。 由于累加器使用顺序未知的组,因此可以通过以下方式生成累加器:
require 'rsa-accumulator'
# using RSA modulus published by RSA Laboratory
acc = RSA::Accumulator.generate_rsa2048
# using Random RSA modulus with a specified bit length(default value is )
acc = RSA::Accumul
2024-01-20 11:32:28
20KB
Ruby
1