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

io.rubrica.keystore.Bit4idStoreProvider Maven / Gradle / Ivy

/*
 * Copyright 2009-2017 Rubrica
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * 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 Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see .
 */

package io.rubrica.keystore;

import java.io.File;

/**
 * KeyStoreProvider para tokens de Bit4id.
 * 
 * @author Ricardo Arguello 
 */
public class Bit4idStoreProvider extends PKCS11KeyStoreProvider {

	private static final String CONFIG;
	private static final String DRIVER_FILE = "/usr/lib/libbit4xpki.so";

	static {
		StringBuffer sb = new StringBuffer();
		sb.append("name=Bit4id\n");
		sb.append("library=").append(DRIVER_FILE).append("\n");
		CONFIG = sb.toString();
	}

	@Override
	public String getConfig() {
		return CONFIG;
	}

	@Override
	public boolean existeDriver() {
		File driver = new File(DRIVER_FILE);
		return driver.exists();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy