Uses of Class
org.episteme.core.mathematics.cryptography.RSAAlgorithm.PrivateKey
Packages that use RSAAlgorithm.PrivateKey
-
Uses of RSAAlgorithm.PrivateKey in org.episteme.core.mathematics.cryptography
Fields in org.episteme.core.mathematics.cryptography declared as RSAAlgorithm.PrivateKeyMethods in org.episteme.core.mathematics.cryptography with parameters of type RSAAlgorithm.PrivateKeyModifier and TypeMethodDescriptionstatic BigIntegerRSAAlgorithm.decrypt(BigInteger ciphertext, RSAAlgorithm.PrivateKey privateKey) Decrypts ciphertext using private key: m = c^d mod nstatic BigIntegerRSAAlgorithm.sign(BigInteger message, RSAAlgorithm.PrivateKey privateKey) Signs message using private key.Constructors in org.episteme.core.mathematics.cryptography with parameters of type RSAAlgorithm.PrivateKeyModifierConstructorDescriptionKeyPair(RSAAlgorithm.PublicKey publicKey, RSAAlgorithm.PrivateKey privateKey)