- Latest Versions
- Data Coding
- Base-58
- Base-64
- Hex
- UTF-8
- JsON
- PNF (Portable Network File)
- TED (Transportable Encoded Data)
- Digest Digest
- SHA-256
- Keccak-256
- RipeMD-160
- Cryptography
- AES-256 (AES/CBC/PKCS7Padding)
- RSA-1024 (RSA/ECB/PKCS1Padding), (SHA256withRSA)
- ECC (Secp256k1)
import chat.dim.protocol.*;
import chat.dim.*;
public class CommonPluginLoader extends PluginLoader {
private final CryptoPluginLoader extraPluginLoader = new CryptoPluginLoader();
//private final NativePluginLoader extraPluginLoader = new NativePluginLoader();
@Override
public void load() {
super.load();
// load extra plugins
extraPluginLoader.load();
}
}This library is primarily designed to implement various algorithms in a plug-in manner, allowing you to further develop additional algorithms tailored to your specific applications.
