以下是一个简单的示例,展示如何在Java中使用AES-256加密人脸数据:
import javax.crypto.Cipher; import javax.crypto.KeyGenerator; import javax.crypto.SecretKey; import javax.crypto.spec.SecretKeySpec; import java.util.Base64; public class DataEncryptionExample { private static final String ALGORITHM = "AES"; private static final String TRANSFORMATION = "AES/ECB/PKCS5Padding"; public static void main(String[] args) { try { // 生成密钥 KeyGenerator keyGen = KeyGenerator.getInstance(ALGORITHM); keyGen.init(256); // 256位密钥 SecretKey secretKey = keyGen.generateKey(); // 将密钥转换为Base64字符串 String encodedKey = Base64.getEncoder().encodeToString(secretKey.getEncoded()); System.out.println("Secret Key: " + encodedKey); // 要加密的数据 String data = "This is a test data for encryption."; System.out.println("Original Data: " + data); // 加密数据 String encryptedData = encrypt(data, secretKey); System.out.println("Encrypted Data: " + encryptedData); // 解密数据 String decryptedData = decrypt(encryptedData, secretKey); System.out.println("Decrypted Data: " + decryptedData); } catch (Exception e) { e.printStackTrace(); } } public static String encrypt(String data, SecretKey key) throws Exception { Cipher cipher = Cipher.getInstance(TRANSFORMATION); cipher.init(Cipher.ENCRYPT_MODE, key); byte[] encryptedBytes = cipher.doFinal(data.getBytes()); return Base64.getEncoder().encodeToString(encryptedBytes); } public static String decrypt(String encryptedData, SecretKey key) throws Exception { Cipher cipher = Cipher.getInstance(TRANSFORMATION); cipher.init(Cipher.DECRYPT_MODE, key); byte[] decodedBytes = Base64.getDecoder().decode(encryptedData); byte[] decryptedBytes = cipher.doFinal(decodedBytes); return new String(decryptedBytes); } }
标签: 来源:
本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享; 2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关; 3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关; 4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除; 5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。