本文简要介绍ruby语言中 OpenSSL::PKey::DH.public_key
的用法。
用法
public_key → dhnew
返回仅携带 DH 参数的新 DH
实例。
与方法名称相反,返回的 DH
对象只包含参数,不包含公钥。
提供此方法是为了向后兼容。大多数情况下,不需要调用此方法。
为了在保留参数的同时重新生成 key 对,请检查 OpenSSL::PKey.generate_key
。
例子:
# OpenSSL::PKey::DH.generate by default generates a random key pair
dh1 = OpenSSL::PKey::DH.generate(2048)
p dh1.priv_key #=> #<OpenSSL::BN 1288347...>
dhcopy = dh1.public_key
p dhcopy.priv_key #=> nil
相关用法
- Ruby DH.generate_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.public_key。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。