Path: blob/master/test/jdk/com/sun/crypto/provider/Mac/NullByteBufferTest.java
41159 views
/*1* Copyright (c) 1998, 2014, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*/2223import java.nio.ByteBuffer;24import java.security.InvalidKeyException;25import java.security.NoSuchAlgorithmException;26import java.security.NoSuchProviderException;27import javax.crypto.Mac;28import javax.crypto.SecretKey;2930/**31* @test32* @bug 804860333* @summary Checks if PBE algorithms work fine with null buffer34* @author Alexander Fomin35* @build Utils36* @run main NullByteBufferTest37*/38public class NullByteBufferTest implements MacTest {3940/**41* @param args the command line arguments42*/43public static void main(String[] args) {44Utils.runTests(new NullByteBufferTest());45}4647@Override48public void doTest(String alg) throws NoSuchAlgorithmException,49InvalidKeyException, NoSuchProviderException {50SecretKey key = Utils.getSecretKeySpec();5152// instantiate Mac object and init it with a SecretKey53Mac mac = Mac.getInstance(alg, "SunJCE");54mac.init(key);5556try {57ByteBuffer buf = null;58mac.update(buf);59mac.doFinal();60throw new RuntimeException(61"Expected IllegalArgumentException not thrown");62} catch (IllegalArgumentException e) {63System.out.println("Expected IllegalArgumentException thrown: "64+ e);65}66}6768}697071