fromMontgomery function

int fromMontgomery(
  1. int x
)

Converts an integer x from Montgomery representation back to standard representation.

Implementation

int fromMontgomery(int x) {
  return montgomeryReduce(x);
}