111件ヒット
[101-111件を表示]
(0.147秒)
ライブラリ
- ビルトイン (3)
- bigdecimal (12)
- openssl (96)
クラス
- BigDecimal (12)
- Integer (3)
-
OpenSSL
:: PKey :: RSA (96)
検索結果
-
OpenSSL
:: PKey :: RSA # dmq1=(new _ dmq1) (3017.0) -
鍵の exponent2 を設定します。
...鍵の exponent2 を設定します。
通常このメソッドで値を変更することはありません。
よく考えて必要な場合のみ利用してください。
@param new_dmq1 設定する整数... -
Integer
# **(other) -> Numeric (13.0) -
算術演算子。冪(べき乗)を計算します。
...べき乗)を計算します。
@param other 二項演算の右側の引数(対象)
@param modulo 指定すると、計算途中に巨大な値を生成せずに (self**other) % modulo と同じ結果を返します。
@return 計算結果
@raise TypeError 2引数 pow で Integer 以外を指定し......引数 pow で other に負の数を指定した場合に発生します。
@raise ArgumentError 計算結果が巨大になりすぎる場合に発生します。
//emlist[][ruby]{
2 ** 3 # => 8
2 ** 0 # => 1
0 ** 0 # => 1
3.pow(3, 8) # => 3
3.pow(3, -8) # => -5
3.pow(2, -2) # => -1
-3.pow(3,......8) # => 5
-3.pow(3, -8) # => -3
5.pow(2, -8) # => -7
//}
計算結果が巨大すぎるときは ArgumentError が発生します。
//emlist[計算結果が巨大すぎる例][ruby]{
p 100**9999999999999999999
# => exponent is too large (ArgumentError)
//}
判定の閾値は変わりえま...