本文簡要介紹ruby語言中 OpenSSL::PKey::DSA.syssign
的用法。
用法
syssign(string) → string
計算並返回 string
的 DSA 簽名,其中 string
應該是原始輸入數據的 already-computed 消息摘要。使用此 DSA
實例的私鑰頒發簽名。
在 3.0 版中已棄用。考慮改用 PKey::PKey#sign_raw
和 PKey::PKey#verify_raw
。
string
-
要簽名的原始輸入數據的消息摘要。
例子:
dsa = OpenSSL::PKey::DSA.new(2048)
doc = "Sign me"
digest = OpenSSL::Digest.digest('SHA1', doc)
# With legacy #syssign and #sysverify:
sig = dsa.syssign(digest)
p dsa.sysverify(digest, sig) #=> true
# With #sign_raw and #verify_raw:
sig = dsa.sign_raw(nil, digest)
p dsa.verify_raw(nil, sig, digest) #=> true
相關用法
- Ruby DSA.export用法及代碼示例
- Ruby DSA.to_pem用法及代碼示例
- Ruby DSA.new用法及代碼示例
- Ruby DSA.to_s用法及代碼示例
- Ruby Date.valid_civil?用法及代碼示例
- Ruby DateTime jisx0301()用法及代碼示例
- Ruby Date cwday()用法及代碼示例
- Ruby Date ctime()用法及代碼示例
- Ruby Date.gregorian?用法及代碼示例
- Ruby DRb.regist_server用法及代碼示例
- Ruby DH.public_key用法及代碼示例
- 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 DNS.new用法及代碼示例
- Ruby Document.new用法及代碼示例
- Ruby Date.valid_ordinal?用法及代碼示例
- Ruby DateTime to_datetime()用法及代碼示例
- Ruby DateTime civil()用法及代碼示例
注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 DSA.syssign。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。