mod_add(other, m) -> OpenSSL::BN
(self + other) % m を返します。
例:
require 'openssl' OpenSSL::BN.new("7").mod_add(OpenSSL::BN.new("3"), OpenSSL::BN.new("6")) # => 4