我需要在没有任何填充的情况下执行普通的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做类似的事情。