publickeyinfo.java

来自「This is a resource based on j2me embedde」· Java 代码 · 共 290 行

JAVA
290
字号
/* *    * * Copyright  1990-2007 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER *  * This program 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. *  * This program 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 at /legal/license.txt). *  * 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 Sun Microsystems, Inc., 4150 Network Circle, Santa * Clara, CA 95054 or visit www.sun.com if you need additional * information or have any questions. */package com.sun.midp.publickeystore;import java.io.*;/** The information that needs to be stored for a public key. */public class PublicKeyInfo {    /** Used to tag the owner field in a serialized key. */    public static final byte OWNER_TAG      = 1;    /** Used to tag the notBefore field in a serialized key. */    public static final byte NOT_BEFORE_TAG = 2;    /** Used to tag the notAfter field in a serialized key. */    public static final byte NOT_AFTER_TAG  = 3;    /** Used to tag the modulus field in a serialized key. */    public static final byte MODULUS_TAG    = 4;    /** Used to tag the exponent field in a serialized key. */    public static final byte EXPONENT_TAG   = 5;    /** Used to get the domain field in a serialized key. */    public static final byte DOMAIN_TAG     = 6;    /** Used to get the enable field in a serialized key. */    public static final byte ENABLED_TAG     = 7;    /** Distinguished Name of the owner. */    private String owner;    /**     * Start of the key's validity period in milliseconds since Jan 1, 1970.     */    private long notBefore;    /** End of the key's validity period in milliseconds since Jan 1, 1970. */    private long notAfter;        /** RSA modulus for the public key. */    private byte[] modulus;	    /** RSA exponent for the public key. */    private byte[] exponent;    /** Name of the security domain. */    private String domain;    /** If this key can be used for authorization. */    boolean enabled;    /**     * Deserializes a public key from storage.     * @param storage what to get the key from     * @return a full populated PublicKeyInfo object     * @exception IOException if the key storage was corrupted     */    static PublicKeyInfo getKeyFromStorage(InputStorage storage)             throws IOException {        byte[] tag;        Object value;        String owner;        long notBefore;        long notAfter;        byte[] modulus;        byte[] exponent;        String domain;        boolean enabled;                tag = new byte[1];        value = storage.readValue(tag);        if (value == null) {            // no more keys            return null;        }        if (tag[0] != OWNER_TAG) {            throw new IOException("public key storage corrupted");        }        owner = (String)value;        value = storage.readValue(tag);        if (tag[0] != NOT_BEFORE_TAG) {            throw new IOException("public key storage corrupted");        }        notBefore = ((Long)value).longValue();        value = storage.readValue(tag);        if (tag[0] != NOT_AFTER_TAG) {            throw new IOException("public key storage corrupted");        }        notAfter = ((Long)value).longValue();        value = storage.readValue(tag);        if (tag[0] != MODULUS_TAG) {            throw new IOException("public key storage corrupted");        }        modulus = (byte[])value;        value = storage.readValue(tag);        if (tag[0] != EXPONENT_TAG) {            throw new IOException("public key storage corrupted");        }        exponent = (byte[])value;        value = storage.readValue(tag);        if (tag[0] != DOMAIN_TAG) {            throw new IOException("public key storage corrupted");        }        domain = (String)value;        value = storage.readValue(tag);        if (tag[0] != ENABLED_TAG) {            throw new IOException("public key storage corrupted");        }        if(value instanceof String) {			enabled = ((String)value).equals("enabled");		} else {			enabled = ((Boolean)value).booleanValue();		}        return new PublicKeyInfo(owner, notBefore, notAfter,                                 modulus, exponent, domain, enabled);    }    /**     * Constructs a PublicKeyInfo object with the specified attributes.     * This constructor is only used by PublicKeyInfo and its subclasses.     * @param owner      distinguished name of the owner     * @param notBefore  start of validity period expressed in milliseconds     *                   since midnight Jan 1, 1970 UTC      * @param notAfter   end of validity period expressed as above     * @param modulus    modulus associated with the RSA Public Key     * @param exponent   exponent associated with the RSA Public Key     * @param domain     security domain of any application authorized     *                   with the corresponding private key, this can be     *                   set to null, allowing it to be set later     * @param enabled    if true this key is enable, if false the user has     *                   disabled this key for authorization     */    public PublicKeyInfo(String owner, long notBefore, long notAfter,            byte[] modulus, byte[] exponent, String domain, boolean enabled) {        this.owner = owner;        this.notBefore = notBefore;        this.notAfter = notAfter;        this.modulus = modulus;        this.exponent = exponent;        this.domain = domain;        this.enabled = enabled;    }    /**     * Constructs a PublicKeyInfo object with the specified attributes.     * This constructor is only used by PublicKeyInfo and its subclasses.     * Defaults enabled to true.     *     * @param owner      distinguished name of the owner     * @param notBefore  start of validity period expressed in milliseconds     *                   since midnight Jan 1, 1970 UTC      * @param notAfter   end of validity period expressed as above     * @param modulus    modulus associated with the RSA Public Key     * @param exponent   exponent associated with the RSA Public Key     * @param domain     security domain of any application authorized     *                   with the corresponding private key, this can be     *                   set to null, allowing it to be set later     */    public PublicKeyInfo(String owner, long notBefore, long notAfter,            byte[] modulus, byte[] exponent, String domain) {        this(owner, notBefore, notAfter, modulus, exponent, domain, true);    }    /**     * Gets the distinguished name of the key's owner.     * @return name of key's owner     */    public String getOwner() {        return owner;    }    /**     * Gets the start of the key's validity period in     * milliseconds since Jan 1, 1970.     * @return start of a key's validity period.     */    public long getNotBefore() {        return notBefore;    }    /**     * Gets the end of the key's validity period in     * milliseconds since Jan 1, 1970.     * @return end of a key's validity period.     */    public long getNotAfter() {        return notAfter;    }        /**     * Gets RSA modulus of the public key.     * @return the modulus     */    public byte[] getModulus() {        byte[] retVal = new byte[modulus.length];	System.arraycopy(modulus, 0, retVal, 0, modulus.length);        return retVal;    }	    /**     * Gets RSA exponent of the public key.     * @return the exponent     */    public byte[] getExponent() {        byte[] retVal = new byte[exponent.length];	System.arraycopy(exponent, 0, retVal, 0, exponent.length);        return retVal;    }    /**     * Gets name of the security domain for this key.     * @return the security domain     * @see #setDomain     */    public String getDomain() {        if (domain == null) {            return "untrusted";        }        return domain;    }    /**     * Sets the name of the security domain for this key if it does not have     * a domain.     * @param domain security domain     * @see #getDomain     */    public void setDomain(String domain) {        if (domain != null) {            return;        }        this.domain = domain;    }    /**     * Gets the enabled status of this key.     *     * @return true if this key is enabled     */    public boolean isEnabled() {        return enabled;    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?