本文简要介绍ruby语言中 OpenSSL::PKey::DH.generate_key!
的用法。
用法
generate_key! → self
生成私钥和公钥,除非私钥已存在。如果此 DH
实例是根据公共 DH 参数生成的(例如,通过对 DH#public_key
的结果进行编码),则需要首先调用此方法,以便在执行实际 key 交换之前生成每会话 key 。
在 3.0 版中已弃用。此方法与 OpenSSL
3.0.0 或更高版本不兼容。
另见 OpenSSL::PKey.generate_key
。
例子:
# DEPRECATED USAGE: This will not work on OpenSSL 3.0 or later
dh0 = OpenSSL::PKey::DH.new(2048)
dh = dh0.public_key # #public_key only copies the DH parameters (contrary to the name)
dh.generate_key!
puts dh.private? # => true
puts dh0.pub_key == dh.pub_key #=> false
# With OpenSSL::PKey.generate_key
dh0 = OpenSSL::PKey::DH.new(2048)
dh = OpenSSL::PKey.generate_key(dh0)
puts dh0.pub_key == dh.pub_key #=> false
相关用法
- Ruby DH.public_key用法及代码示例
- Ruby DH.new用法及代码示例
- Ruby DH类用法及代码示例
- Ruby Date.valid_civil?用法及代码示例
- Ruby DateTime jisx0301()用法及代码示例
- Ruby Date cwday()用法及代码示例
- Ruby Date ctime()用法及代码示例
- Ruby Date.gregorian?用法及代码示例
- Ruby DRb.regist_server用法及代码示例
- Ruby Date asctime()用法及代码示例
- Ruby DateTime类用法及代码示例
- Ruby DateTime.hour用法及代码示例
- Ruby DateTime.jd用法及代码示例
- Ruby DateTime.zone用法及代码示例
- Ruby DateTime ordinal()用法及代码示例
- Ruby DateTime.second用法及代码示例
- Ruby Date.strftime用法及代码示例
- Ruby Digest.update用法及代码示例
- Ruby DSA.export用法及代码示例
- Ruby DSA.to_pem用法及代码示例
- Ruby DNS.new用法及代码示例
- Ruby Document.new用法及代码示例
- Ruby Date.valid_ordinal?用法及代码示例
- Ruby DateTime to_datetime()用法及代码示例
- Ruby DateTime civil()用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 DH.generate_key!。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。