3

We are trying to do encryption supporting AES/GCM/NoPadding in java 7 getting below exception.

Cannot find any provider supporting AES/GCM/NoPadding

Code sample for generating cipher instance is below.

SecretKeySpec eks = new SecretKeySpec(k, "AES");
Cipher c = Cipher.getInstance("AES/GCM/NoPadding");
c.init(Cipher.ENCRYPT_MODE, eks, new GCMParameterSpec(128, iv));
Community
  • 1
  • 1
dReAmEr
  • 6,986
  • 7
  • 36
  • 63

1 Answers1

12

This cipher is not supported by Java 7 SE (exception for Solaris).

public static void main(String[] args) throws Exception {
    for (Provider provider : Security.getProviders()) {
        for (Map.Entry<Object, Object> entry : provider.entrySet()) {
            if (((String) entry.getValue()).contains("GCM")) {
                System.out.printf("key: [%s]  value: [%s]%n",
                    entry.getKey(),
                    entry.getValue());
            }
        }
    }
}

You might have a look at Bouncy Castle as service provider in that case.

Small snippet for using Bouncycastle.

  1. download bcprov-jdk15on-154.jar from http://www.bouncycastle.org/latest_releases.html
  2. register the service provider in your code

    Security.addProvider(new BouncyCastleProvider());
    
  3. then you are able to use the cipher as (the paramter "BC" specifies to use Bounce Castle as service provider, can be omitted if there is no other provider for the same cipher)

    Cipher c = Cipher.getInstance("AES/GCM/NOPADDING", "BC");
    

Java 8 support the cipher out of the box with

Cipher c = Cipher.getInstance("AES/GCM/NOPADDING");
SubOptimal
  • 22,518
  • 3
  • 53
  • 69
  • Thanks a lot for this information,do you have any sample code how to use AES/GCM/Padding with Bounty Castle,really appreciate. – dReAmEr May 25 '16 at 10:10
  • @RE350 I added the necessary lines into my answer. The main thing you need to do is to register the new service provider. – SubOptimal May 25 '16 at 10:36