io.github.sinri.keel.helper.encryption.aes.KeelAesUsingPkcs5Padding Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Keel Show documentation
Show all versions of Keel Show documentation
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