505N/A/*
2362N/A * Copyright (c) 2008, Oracle and/or its affiliates. All rights reserved.
505N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
505N/A *
505N/A * This code is free software; you can redistribute it and/or modify it
505N/A * under the terms of the GNU General Public License version 2 only, as
505N/A * published by the Free Software Foundation.
505N/A *
505N/A * This code is distributed in the hope that it will be useful, but WITHOUT
505N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
505N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
505N/A * version 2 for more details (a copy is included in the LICENSE file that
505N/A * accompanied this code).
505N/A *
505N/A * You should have received a copy of the GNU General Public License version
505N/A * 2 along with this work; if not, write to the Free Software Foundation,
505N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
505N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
505N/A */
505N/A
505N/A/*
505N/A * @test
505N/A * @bug 6731685
505N/A * @summary CertificateFactory.generateCertificates throws IOException on PKCS7 cert chain
505N/A */
505N/A
505N/Aimport java.io.*;
505N/Aimport sun.security.util.*;
505N/A
505N/Apublic class Indefinite {
505N/A
505N/A public static void main(String[] args) throws Exception {
505N/A byte[] input = {
505N/A // An OCTET-STRING in 2 parts
505N/A 4, (byte)0x80, 4, 2, 'a', 'b', 4, 2, 'c', 'd', 0, 0,
505N/A // Garbage follows, may be falsely recognized as EOC
505N/A 0, 0, 0, 0
505N/A };
505N/A new DerValue(new ByteArrayInputStream(input));
505N/A }
505N/A}