/* * Copyright (c) 2000, 2022, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package sun.security.x509; import java.io.IOException; import java.util.ArrayList; import java.util.List; import java.util.Vector; import sun.security.util.DerOutputStream; import sun.security.util.DerValue; import sun.security.util.KnownOIDs; import sun.security.util.ObjectIdentifier; /** * This class defines the Extended Key Usage Extension, which * indicates one or more purposes for which the certified public key * may be used, in addition to or in place of the basic purposes * indicated in the key usage extension field. This field is defined * as follows:
* * id-ce-extKeyUsage OBJECT IDENTIFIER ::= {id-ce 37}
* * ExtKeyUsageSyntax ::= SEQUENCE SIZE (1..MAX) OF KeyPurposeId
* * KeyPurposeId ::= OBJECT IDENTIFIER
* * Key purposes may be defined by any organization with a need. Object * identifiers used to identify key purposes shall be assigned in * accordance with IANA or ITU-T Rec. X.660 | ISO/IEC/ITU 9834-1.
* * This extension may, at the option of the certificate issuer, be * either critical or non-critical.
* * If the extension is flagged critical, then the certificate MUST be * used only for one of the purposes indicated.
* * If the extension is flagged non-critical, then it indicates the * intended purpose or purposes of the key, and may be used in finding * the correct key/certificate of an entity that has multiple * keys/certificates. It is an advisory field and does not imply that * usage of the key is restricted by the certification authority to * the purpose indicated. Certificate using applications may * nevertheless require that a particular purpose be indicated in * order for the certificate to be acceptable to that application.
*
* If a certificate contains both a critical key usage field and a
* critical extended key usage field, then both fields MUST be
* processed independently and the certificate MUST only be used for a
* purpose consistent with both fields. If there is no purpose
* consistent with both fields, then the certificate MUST NOT be used
* for any purpose.
*
* @since 1.4
*/
public class ExtendedKeyUsageExtension extends Extension {
public static final String NAME = "ExtendedKeyUsage";
/**
* Vector of KeyUsages for this object.
*/
private Vector