public class CryptoFunctions extends Object
Modifier and Type | Class and Description |
---|---|
static class |
CryptoFunctions.AESDecryptFunction
AES_DECRYPT() decrypts the encrypted string crypt_str using the key string key_str and returns the original cleartext string.
|
static class |
CryptoFunctions.AESEncryptFunction
aes_encrypt()/ aes_decrypt(): implement encryption and decryption of data using the official AES (Advanced Encryption Standard) algorithm,
previously known as “Rijndael.” AES_ENCRYPT() encrypts the string str using the key string key_str and returns a
binary string containing the encrypted output.
|
static class |
CryptoFunctions.MD2Function
This class returns the md2 digest of a given input string.
|
static class |
CryptoFunctions.MD5Function
This function returns the MD5 digest of a given input string.
|
static class |
CryptoFunctions.SHA1Function
sha(
|
static class |
CryptoFunctions.SHA256Function
sha2(
|
static class |
CryptoFunctions.SHA384Function
This function returns the SHA384 digest of a given input string.
|
static class |
CryptoFunctions.SHA512Function
This function returns the SHA512 digest of a given input string.
|
Copyright © 2018 The Apache Software Foundation. All rights reserved.