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

es.gob.afirma.keystores.capiaddressbook.MSCAPIAddressBook Maven / Gradle / Ivy

Go to download

Modulo el acceso al almacen de certificados de terceros (Libreta de direcciones) de Windows

There is a newer version: 1.7.2
Show newest version
/* Copyright (C) 2011 [Gobierno de Espana]
 * This file is part of "Cliente @Firma".
 * "Cliente @Firma" is free software; you can redistribute it and/or modify it under the terms of:
 *   - the GNU General Public License as published by the Free Software Foundation;
 *     either version 2 of the License, or (at your option) any later version.
 *   - or The European Software License; either version 1.1 or (at your option) any later version.
 * You may contact the copyright holder at: [email protected]
 */

package es.gob.afirma.keystores.capiaddressbook;

import java.security.Provider;

/** Proveedor JCA para el acceso a los almacenes de claves de CAPI CA y
 * ADDRESSBOOK. Basado en SunMSCAPI.java
 * @author Tomás García-Merás */
public final class MSCAPIAddressBook extends Provider {

    private static final long serialVersionUID = 2561943190524802403L;

    private static final double VERSION = 0.1d;

    private static final String INFO = "Proveedor para la libreta de direcciones (Other People) de CAPI"; //$NON-NLS-1$

    /** Construye el proveedor JCA para el acceso a los almacenes de claves
     * CA y ADDRESSBOOK. */
    public MSCAPIAddressBook() {
        super("SunMSCAPIAddressBook", VERSION, INFO); //$NON-NLS-1$
        put("KeyStore.Windows-ADDRESSBOOK", "sun.security.mscapi.KeyStoreAddressBook$ADDRESSBOOK"); //$NON-NLS-1$ //$NON-NLS-2$
        put("KeyStore.Windows-CA", "sun.security.mscapi.KeyStoreAddressBook$CA"); //$NON-NLS-1$ //$NON-NLS-2$
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy