Encryption/Decryption
Function: calc[Decryption] - decrypt an encrypted message
Calling Sequence:
Decryption(K, n, d)
Parameters:
K - encrypted message
- number code
d - private key
Description:
Examples:
| > | restart: with(calc): |
| > | M:="Hello MathMaple users,
This is the end of some sample pages from Mathematics with Maple, Cheers Harald":%; |
| > | K:=Encryption(M,n,d):%; |
| > | n; |
| > | d; |
| > | Decryption(K,n,d); |