AES加密在Swift中类似于Android

时间:2017-01-23 17:17:01

标签: ios encryption swift3

我需要在没有任何填充的情况下执行普通的AES加密,并且在Swift中没有提到密码模式。

有人可以在上面点灯吗?

在Android中,可以导入默认框架

 import javax.crypto.Cipher;

并进行基本加密,

encrypt_ciper = Cipher.getInstance("AES");
decrypt_ciper =   Cipher.getInstance("AES");
text=Base64.encodeToString(encrypt_ciper.doFinal(strToEncrypt.getBytes()),Base64.DEFAULT);

我需要在Swift中为iOS做类似的事情。

0 个答案:

没有答案