< prev index next >

test/com/oracle/security/ucrypto/TestGCMKeyWrap.java

Print this page




   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 8014374
  27  * @summary Ensure key wrap/unwrap works using AES/GCM/NoPadding

  28  */
  29 
  30 import java.io.*;
  31 import java.security.*;
  32 import java.security.spec.*;
  33 import java.util.*;
  34 import javax.crypto.*;
  35 import javax.crypto.spec.*;
  36 
  37 public class TestGCMKeyWrap extends UcryptoTest {
  38 
  39     public static void main(String[] args) throws Exception {
  40         main(new TestGCMKeyWrap(), null);
  41     }
  42 
  43     public void doTest(Provider p) throws Exception {
  44         // check if GCM support exists
  45         try {
  46             Cipher.getInstance("AES/GCM/NoPadding", p);
  47         } catch (NoSuchAlgorithmException nsae) {




   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 8014374
  27  * @summary Ensure key wrap/unwrap works using AES/GCM/NoPadding
  28  * @key randomness
  29  */
  30 
  31 import java.io.*;
  32 import java.security.*;
  33 import java.security.spec.*;
  34 import java.util.*;
  35 import javax.crypto.*;
  36 import javax.crypto.spec.*;
  37 
  38 public class TestGCMKeyWrap extends UcryptoTest {
  39 
  40     public static void main(String[] args) throws Exception {
  41         main(new TestGCMKeyWrap(), null);
  42     }
  43 
  44     public void doTest(Provider p) throws Exception {
  45         // check if GCM support exists
  46         try {
  47             Cipher.getInstance("AES/GCM/NoPadding", p);
  48         } catch (NoSuchAlgorithmException nsae) {


< prev index next >