< prev index next >

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

Print this page




   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 Test CipherInputStream/OutputStream func w/ GCM mode and AAD.
  28  * @author Valerie Peng

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




   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 Test CipherInputStream/OutputStream func w/ GCM mode and AAD.
  28  * @author Valerie Peng
  29  * @key randomness
  30  */
  31 
  32 import java.io.*;
  33 import java.security.*;
  34 import java.util.*;
  35 import javax.crypto.*;
  36 import javax.crypto.spec.*;
  37 
  38 public class TestCICOWithGCMAndAAD extends UcryptoTest {
  39     public static void main(String[] args) throws Exception {
  40         main(new TestCICOWithGCMAndAAD(), 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) {
  48             System.out.println("Skipping Test due to no GCM support");
  49             return;


< prev index next >