public class CryptoARIA
extends java.lang.Object
Constructor and Description |
---|
CryptoARIA() |
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
decrypt(java.lang.String decrypt,
java.lang.String algorithmKey)
ARIA 복호화
|
static java.lang.String |
encrypt(java.lang.String encrypt,
java.lang.String algorithmKey)
ARIA 암호화
|
static int |
seqDecrypt(int decrypt,
java.lang.String algorithmKey)
순번 복호화
|
static int |
seqEncrypt(int encrypt,
java.lang.String algorithmKey)
순번 암호화
|
public static java.lang.String encrypt(java.lang.String encrypt, java.lang.String algorithmKey) throws java.io.UnsupportedEncodingException
encrypt
- 암호화될 값algorithmKey
- 암호화 알고리즘키java.io.UnsupportedEncodingException
- 인코딩 오류처리public static java.lang.String decrypt(java.lang.String decrypt, java.lang.String algorithmKey) throws java.io.UnsupportedEncodingException
decrypt
- 복호화될 값algorithmKey
- 암호화 알고리즘키java.io.UnsupportedEncodingException
- 인코딩 오류처리public static int seqEncrypt(int encrypt, java.lang.String algorithmKey) throws java.io.UnsupportedEncodingException
encrypt
- 암호화될 순번algorithmKey
- 암호화 알고리즘키java.io.UnsupportedEncodingException
- 인코딩 오류처리public static int seqDecrypt(int decrypt, java.lang.String algorithmKey) throws java.io.UnsupportedEncodingException
decrypt
- 복호화될 순번algorithmKey
- 암호화 알고리즘키java.io.UnsupportedEncodingException
- 인코딩 오류처리