2015-08-18 37 views
0

当我切换到Cipher.getInstance("AES")Cipher.getInstance("AES/CBC/NoPadding")我开始收到此错误:爪哇 - InvalidKeyException将使用AES/CBC/NoPadding

12:18:20 [SEVERE] java.security.InvalidKeyException: No installed provider supports this key: javax.crypto.spec.SecretKeySpec 
    12:18:20 [SEVERE]  at javax.crypto.Cipher.chooseProvider(Cipher.java:878) 
    12:18:20 [SEVERE]  at javax.crypto.Cipher.init(Cipher.java:1213) 
    12:18:20 [SEVERE]  at javax.crypto.Cipher.init(Cipher.java:1153) 
    12:18:20 [SEVERE]  at net.azidea.bungee.netty.packet.codec.Encryption.decrypt(Encryption.java:52) 
    12:18:20 [SEVERE]  at net.azidea.bungee.netty.packet.codec.PacketDecrypter.decode(PacketDecrypter.java:20) 
    12:18:20 [SEVERE]  at net.azidea.bungee.netty.packet.codec.PacketDecrypter.decode(PacketDecrypter.java:12) 
    12:18:20 [SEVERE]  at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:89) 
    12:18:20 [SEVERE]  at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) 
    12:18:20 [SEVERE]  at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) 
    12:18:20 [SEVERE]  at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:161) 
    12:18:20 [SEVERE]  at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) 
    12:18:20 [SEVERE]  at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) 
    12:18:20 [SEVERE]  at io.netty.channel.ChannelInboundHandlerAdapter.channelRead(ChannelInboundHandlerAdapter.java:86) 
    12:18:20 [SEVERE]  at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) 
    12:18:20 [SEVERE]  at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) 
    12:18:20 [SEVERE]  at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:787) 
    12:18:20 [SEVERE]  at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:130) 
    12:18:20 [SEVERE]  at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:511) 
    12:18:20 [SEVERE]  at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:468) 
    12:18:20 [SEVERE]  at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:382) 
    12:18:20 [SEVERE]  at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:354) 
    12:18:20 [SEVERE]  at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:116) 
    12:18:20 [SEVERE]  at io.netty.util.concurrent.DefaultThreadFactory$DefaultRunnableDecorator.run(DefaultThreadFactory.java:137) 
    12:18:20 [SEVERE]  at java.lang.Thread.run(Thread.java:745) 

解密时。它只用AES就没问题(没有“CBC/NoPadding”部分)。我改变了这一点,因为不是我的所有数据包都是16字节的倍数。

key.getAlgorithm()的输出是“AES”。

Decryption

public static ByteBuf decrypt(ByteBuf encrypted) 
{ 
    try 
    { 
     cipher.init(Cipher.DECRYPT_MODE, key); 
     return Unpooled.copiedBuffer(cipher.doFinal(NettyUtils.toArray(encrypted))); 
    } 
    catch(Exception e) 
    { 
     e.printStackTrace(); 
     System.out.println("[Netty] Error decrypting packet."); 
    } 

    return null; 
} 

Cipher

private static Cipher cipher; 
private static SecretKeySpec key; 

static 
{ 
    try 
    { 
     key = new SecretKeySpec(NettyServer.getSecretKey(), "AES"); 
     cipher = Cipher.getInstance("AES/CBC/NoPadding"); 
    } 
    catch(Exception e) 
    { 
     e.printStackTrace(); 
    } 
} 
+1

可能的重复[Java AES:没有安装的提供程序支持此项:javax.crypto.spec.SecretKeySpec](http://stackoverflow.com/questions/8362262/java-aes-no-installed-provider-supports- this-key-javax-crypto-spec-secretkeysp) –

+0

当你试图加密时你是否得到了错误 – Turtle

+0

或者你是否试图创建密钥而得到错误?另外你为什么要切换到AES/CBC/NoPadding? – Turtle

回答

0

指定构造一个IvParameterSpec固定的问题。

+0

呃,如果没有IV,你会在Oracle VM上得到上述异常?这不好。我会尝试验证。指定确切的运行时间仍然非常重要。 –