gpt4 book ai didi

java - Java 安全模块 KeyGenerator 线程安全吗?如果不是那么如何解决?

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:59:13 26 4
gpt4 key购买 nike

我有一个并发加密/解密程序,其中通过调用以下代码(用scala编写,Java版本应该很相似)同时随机生成多个AES128 key :

  private def AESKeyGen: KeyGenerator = {
val keyGen = KeyGenerator.getInstance("AES")
keyGen.init(128)
keyGen
}

def generateKey: SecretKey = this.synchronized {
AESKeyGen.generateKey()
}

每个 key 用于加密固定字节数组,然后使用 AESEncrypt 和 AESDecrypt 函数对其进行解密:

  def ivParameterSpec = this.synchronized{
import com.schedule1.datapassport.view._

new IvParameterSpec("DataPassports===")
}

private def getCipher = this.synchronized {
Cipher.getInstance("AES/CBC/PKCS5Padding")
}

private def nextCipher(aesKey: Key): Cipher = this.synchronized{
val cipher = getCipher
cipher.init(Cipher.ENCRYPT_MODE, aesKey, ivParameterSpec)
cipher
}

private def nextDecipher(aesKey: Key): Cipher = this.synchronized{
val cipher = getCipher
cipher.init(Cipher.DECRYPT_MODE, aesKey, ivParameterSpec)
cipher
}

def nullBytes = Array.fill[Byte](16)(0)

def aesEncrypt(bytes: Array[Byte], key: Key): Array[Byte] = this.synchronized{
val effectiveBytes = if (bytes == null) nullBytes
else bytes
nextCipher(key).doFinal(effectiveBytes)
}

def aesDecrypt(cipher: Array[Byte], key: Key): Array[Byte] = this.synchronized{
val effectiveBytes = Utils.retry(3){
nextDecipher(key).doFinal(cipher)
}
if (effectiveBytes.toList == nullBytes.toList) null
else effectiveBytes
}

程序在1核/线程上运行流畅,但是当我逐渐增加并发到8时,我遇到以下错误的机会逐渐增加:

javax.crypto.BadPaddingException: Given final block not properly padded
at com.sun.crypto.provider.CipherCore.doFinal(CipherCore.java:966)
at com.sun.crypto.provider.CipherCore.doFinal(CipherCore.java:824)
at com.sun.crypto.provider.AESCipher.engineDoFinal(AESCipher.java:436)
at javax.crypto.Cipher.doFinal(Cipher.java:2165)
...

看起来至少有一个加密货币组件不是线程安全的,尽管我已将它们中的大部分标记为尽可能同步。如何解决这个问题? (或者我应该切换到哪个库来避免它?)

最佳答案

经过一些测试,我发现sun.misc.BASE64Encoder不是线程安全的,将其实例从单例更改为动态创建后,所有问题都解决了。

关于java - Java 安全模块 KeyGenerator 线程安全吗?如果不是那么如何解决?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30688609/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com