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

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

Go to download

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

The newest version!
package io.github.sinri.keel.helper.encryption.aes;

/**
 * @since 2.8
 */
abstract public class KeelAesUsingPkcs5Padding extends KeelAesBase {
    /**
     * @param key AES要求密钥长度为128位或192位或256位,java默认限制AES密钥长度最多128位
     */
    public KeelAesUsingPkcs5Padding(String key) {
        super(key);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy