This is Python program I am stuck
Modify the Russian peasant multiplication mod n function from class to perform "Russian peasant exponentiation" instead. You can assume that you know how to multiply, of course, and will need a function square in place of double. Call your function to compute be rpexpmodn(b,e).
Optional Information:
Programming Language: python
Compiler: python 3.2.2 interoerter
Already Tried:
def rpmultmodn(a,b,n): if b == 0: return 0 elif iseven(b): return doublemodn(rpmultmodn(a,b//2,n),n) else: return (a+rpmultmodn(a,b-1,n))%n
question..