All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.sinri.keel.helper.encryption.aes.README.md Maven / Gradle / Ivy

Go to download

A website framework with VERT.X for ex-PHP-ers, exactly Ark Framework Users.

The newest version!
# AES in Keel

Java provided `PKCS5Padding`.

If you needs `PKCS7Padding`, you may need BC-PROV.

Append this to the pom file.

````xml


    
    
    
        org.bouncycastle
        bcprov-jdk18on
        1.78.1
    
    
    
    
        org.bouncycastle
        bcpkix-jdk18on
        1.78.1
    

````

Then call `io.github.sinri.keel.core.helper.encryption.aes.KeelAesUsingPkcs7Padding.requireBouncyCastleProvider();`
in the initialization code of your program.

A sample of main class with main method to startup:

```java
import io.github.sinri.keel.helper.encryption.aes.KeelAesUsingPkcs7Padding;

public class Main {
    public static void main(String[] args) {
        KeelAesUsingPkcs7Padding.requireBouncyCastleProvider();
    }
}
```





© 2015 - 2024 Weber Informatics LLC | Privacy Policy