part2
Interface RSAPrivateKey

All Known Implementing Classes:
CRTRSAPrivateKey, SimpleRSAPrivateKey

public interface RSAPrivateKey

An interface defining the methods required of an RSA private key.


Method Summary
 java.lang.String decrypt(java.util.AbstractList cipherText)
          A method to decrypt the ciphertext cipherText to a string value using this private key.
 java.math.BigInteger decrypt(java.math.BigInteger cipherText)
          A method to decrypt the ciphertext cipherText to a big integer value using this private key.
 

Method Detail

decrypt

public java.math.BigInteger decrypt(java.math.BigInteger cipherText)
                             throws java.lang.Exception
A method to decrypt the ciphertext cipherText to a big integer value using this private key.

Throws:
Exception.
java.lang.Exception

decrypt

public java.lang.String decrypt(java.util.AbstractList cipherText)
                         throws java.lang.Exception
A method to decrypt the ciphertext cipherText to a string value using this private key.

Throws:
Exception.
java.lang.Exception