All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tencent.kona.sun.security.x509.FreshestCRLExtension Maven / Gradle / Ivy

Go to download

A Java security provider for supporting ShangMi algorithms in public key infrastructure

There is a newer version: 1.0.15
Show newest version
/*
 * Copyright (c) 2005, 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 com.tencent.kona.sun.security.x509;

import com.tencent.kona.sun.security.util.DerOutputStream;

import java.io.IOException;
import java.util.List;

/**
 * Represents the Freshest CRL Extension.
 *
 * 

* The extension identifies how delta CRL information for a * complete CRL is obtained. * *

* The extension is defined in Section 5.2.6 of * Internet X.509 PKI * Certificate and Certificate Revocation List (CRL) Profile. * *

* Its ASN.1 definition is as follows: *

 *     id-ce-freshestCRL OBJECT IDENTIFIER ::=  { id-ce 46 }
 *
 *     FreshestCRL ::= CRLDistributionPoints
 * 
* * @since 1.6 */ public class FreshestCRLExtension extends CRLDistributionPointsExtension { /** * Attribute name. */ public static final String NAME = "FreshestCRL"; /** * Creates a fresh CRL extension. * The criticality is set to false. * * @param distributionPoints the list of delta CRL distribution points. */ public FreshestCRLExtension(List distributionPoints) { super(PKIXExtensions.FreshestCRL_Id, false, distributionPoints, NAME); } /** * Creates the extension from the passed DER encoded value of the same. * * @param critical true if the extension is to be treated as critical. * @param value an array of DER encoded bytes of the actual value. * @exception IOException on decoding error. */ public FreshestCRLExtension(Boolean critical, Object value) throws IOException { super(PKIXExtensions.FreshestCRL_Id, critical.booleanValue(), value, NAME); } /** * Writes the extension to the DerOutputStream. * * @param out the DerOutputStream to write the extension to. */ @Override public void encode(DerOutputStream out) { super.encode(out, PKIXExtensions.FreshestCRL_Id, false); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy