mod_mul(other, m) -> OpenSSL::BN[permalink][rdoc][edit]-
(self * other) % m を返します。
require 'openssl' p OpenSSL::BN.new("7").mod_mul(OpenSSL::BN.new("3"), OpenSSL::BN.new("6")) # => 3- [PARAM]
other: - 積を取る数
- [PARAM]
m: - 剰余を取る数
- [EXCEPTION]
OpenSSL::BNError: - 計算時エラー
- [PARAM]