일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- DotsTween
- base64
- 최적화
- sha
- Dynamic Font
- ui
- Unity Editor
- job
- 프레임워크
- Job 시스템
- 커스텀 패키지
- 2D Camera
- 텍스트 메시 프로
- jumping ball
- 암호화
- RSA
- 샘플
- 다이나믹 폰트
- Framework
- unity
- C#
- 이미지 폰트
- TextMeshPro
- Dots
- 단말기 해상도
- AES
- adfit
- 가이드
- Custom Package
- Tween
Archives
- Today
- Total
EveryDay.DevUp
[Unity] 프레임 워크 가이드 - 암복호화 ( v.0.1.0 ) 본문
▣ 기본 설정
https://everyday-devup.tistory.com/44
▶ Resources 폴더에서 Create/Scriptable Object Asset/CryptoData 생성
: 사용할 AES Key ( size 128, 256 ), AES IV ( size 128 )를 입력 후 Convert 버튼을 클릭한다.
: 사용할 RSA를 Create한 뒤 폴더 경로와 파일 이름을 입력한 후 Save 버튼을 클릭한다. ( RSA Public Key와 Private Key는 C# API를 통해 생성 )
: 기존에 만든 RSA가 있다면 Load 한다.
1. Base64 사용
◆ 사용 예시
private void Start()
{
string testCrypto = "TestData";
string base64EncodingData = cryptoManager.EncodingBase64( testCrypto );
Debug.Log( "Base64 인코딩 : " + base64EncodingData );
string base64DecdingData = cryptoManager.DecodingBase64( base64EncodingData );
Debug.Log( "Base64 디코딩 : " + base64DecdingData );
}
2. SHA256 HASH 사용
◆ 사용 예시
private void Start()
{
string testCrypto = "TestData";
string sha256Base64 = cryptoManager.SHA256Base64( testCrypto );
Debug.Log( "sha256Base64 : " + sha256Base64 );
}
3. AES ( 128, 192, 256 ) 사용
◆ 사용 예시
private void Start()
{
string testCrypto = "TestData";
string encryptData = cryptoManager.EncryptAESbyBase64Key( testCrypto );
Debug.Log( "암호화 : " + encryptData );
string decryptData = cryptoManager.DecryptAESByBase64Key( encryptData );
Debug.Log( "복호화 : " + decryptData );
}
4. RSA
◆ 사용 예시
private void Start()
{
string testCrypto = "TestData";
string encryptRSA = cryptoManager.EncryptRSAbyBase64PublicKey( testCrypto );
Debug.Log( "RSA 암호화 : " + encryptRSA );
string decryptRSA = cryptoManager.DecryptRSAByBase64Key( encryptRSA );
Debug.Log( "RSA 복호화 : " + decryptRSA );
}
5. 암호화 변수
private void Start()
{
CryptoValue<int> atk = new CryptoValue<int>();
atk.Set( 100 );
Debug.Log( "암복호화 값 : " + atk.Get() );
Debug.Log( "비암복호화 값 : " + atk.GetUnSafeData() );
}
▣ 해당 컴포넌트 사용 관련 이론
https://everyday-devup.tistory.com/24
▣ 해당 컴포넌트 사용 관련 구현
https://everyday-devup.tistory.com/25
https://everyday-devup.tistory.com/28
https://everyday-devup.tistory.com/27
https://everyday-devup.tistory.com/
https://everyday-devup.tistory.com/31
'FrameWork > 샘플 및 가이드' 카테고리의 다른 글
[Unity] 프레임 워크 기능 및 사용 가이드 ( v.0.1.1 ) (0) | 2020.07.06 |
---|---|
[Unity] 프레임 워크 가이드 - 패키지 다운 및 기본 씬 설정 ( v.0.1.1 ) (0) | 2020.07.06 |
[Unity] 프레임 워크 가이드 - 파일 저장/불러오기 ( v.0.0.1 ) (0) | 2020.05.09 |
[Unity] 프레임 워크 가이드 - 2D Camera, Canvas 설정 ( v.0.0.1 ) (0) | 2020.05.09 |