Exponentiation
- https://en.wikipedia.org/wiki/Exponentiation
Basic
We can calculate the exponentiation using '**' operator in Python.
Using Pow Method in Python
The pow
method can be used for the exponentiation.
Modular Exponentiation
In addition, we can find the remainder of dividing a rased value by a specific number.
This may be sometimes used to find the secret key in key derivation functions, etc.