static String |
MCrypt.decode(AsyncKey key,
String in) |
Decode the data using Base91 byte encoding and the private key from 'key' using a RSA like algorithm.
|
static BigInteger |
MCrypt.decode(AsyncKey key,
BigInteger in) |
Decode one byte using the private key.
|
static BigInteger[] |
MCrypt.decode(AsyncKey key,
BigInteger[] in) |
Decode the data using the private key from 'key' using a RSA like algorithm.
|
static byte[] |
MCrypt.decodeBytes(AsyncKey key,
BigInteger[] in) |
Decode data using the private key from 'key' using a RSA like algorithm.
|
static String |
MCrypt.decodeWithSalt(AsyncKey key,
String in) |
Decode the data using Base91 byte encoding and the private key from 'key' using a RSA like algorithm.
|
static String |
MCrypt.encode(AsyncKey key,
String in) |
Encode data using a RSA like algorithm.
|
static BigInteger |
MCrypt.encode(AsyncKey key,
BigInteger in) |
Encode data using a RSA like algorithm.
|
static BigInteger[] |
MCrypt.encodeBytes(AsyncKey key,
byte[] in) |
Encode data using a RSA like algorithm.
|
static BigInteger[] |
MCrypt.encodeBytes(AsyncKey key,
BigInteger[] in) |
Encode data using a RSA like algorithm.
|
static String |
MCrypt.encodeWithSalt(AsyncKey key,
String in) |
Encode data using a RSA like algorithm.
|