Uses of Class
org.episteme.core.mathematics.cryptography.RSAAlgorithm.PublicKey
Packages that use RSAAlgorithm.PublicKey
-
Uses of RSAAlgorithm.PublicKey in org.episteme.core.mathematics.cryptography
Fields in org.episteme.core.mathematics.cryptography declared as RSAAlgorithm.PublicKeyMethods in org.episteme.core.mathematics.cryptography with parameters of type RSAAlgorithm.PublicKeyModifier and TypeMethodDescriptionstatic BigIntegerRSAAlgorithm.encrypt(BigInteger message, RSAAlgorithm.PublicKey publicKey) Encrypts message using public key: c = m^e mod nstatic booleanRSAAlgorithm.verify(BigInteger message, BigInteger signature, RSAAlgorithm.PublicKey publicKey) Verifies signature using public key.Constructors in org.episteme.core.mathematics.cryptography with parameters of type RSAAlgorithm.PublicKeyModifierConstructorDescriptionKeyPair(RSAAlgorithm.PublicKey publicKey, RSAAlgorithm.PrivateKey privateKey)