아이폰
IOS Swift AES(128, 192, 256) 암복호화
AES 암복호화 CryptoSwift 라이브러리 Pod 추가 추가 : pod 'CryptoSwift', '~> 1.3.8' 설치 : pod install 링크 : https://github.com/krzyzanowskim/CryptoSwift key값의 길이에 따라 AES128, AES192, AES256 으로 구분됨 AES128 : 키값 16bytes AES192 : 키값 24bytes AES256 : 키값 32bytes 예제 코드(AES256) import Foundation import CryptoSwift //라이브러리 : https://github.com/krzyzanowskim/CryptoSwift //pod 'CryptoSwift', '~> 1.3.8' class AES256Util { //..
2021. 11. 18. 19:29
최근댓글