Path: blob/master/test/jdk/com/sun/crypto/provider/Mac/LargeByteBufferTest.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 large buffer34* @author Alexander Fomin35* @build Utils36* @run main LargeByteBufferTest37*/38public class LargeByteBufferTest implements MacTest {3940private static final int BUFFER_SIZE = 65535;4142/**43* @param args the command line arguments44*/45public static void main(String[] args) {46Utils.runTests(new LargeByteBufferTest());47}4849@Override50public void doTest(String alg) throws NoSuchAlgorithmException,51InvalidKeyException, NoSuchProviderException {52SecretKey key = Utils.getSecretKeySpec();5354// instantiate Mac object and init it with a SecretKey55Mac mac = Mac.getInstance(alg, "SunJCE");56mac.init(key);5758// prepare buffer59byte[] data = new byte[BUFFER_SIZE];60for (int i = 0; i < BUFFER_SIZE; i++) {61data[i] = (byte) (i % 256);62}6364ByteBuffer buf = ByteBuffer.wrap(data);65int limitBefore = buf.limit();6667mac.update(buf);68mac.doFinal();6970int limitAfter = buf.limit();71int positonAfter = buf.position();7273if (limitAfter != limitBefore) {74System.out.println("limit after = " + limitAfter);75System.out.println("limit before = " + limitBefore);76throw new RuntimeException("Test failed: "77+ "limit of buffer has been chenged.");78}7980if (positonAfter != limitAfter) {81System.out.println("position after = " + positonAfter);82System.out.println("limit after = " + limitAfter);83throw new RuntimeException("Test failed: "84+ "position of buffer isn't equal to its limit");85}86}8788}899091