📄 basesmadapter.java
字号:
/* * Copyright (c) 2000 jPOS.org. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. The end-user documentation included with the redistribution, * if any, must include the following acknowledgment: * "This product includes software developed by the jPOS project * (http://www.jpos.org/)". Alternately, this acknowledgment may * appear in the software itself, if and wherever such third-party * acknowledgments normally appear. * * 4. The names "jPOS" and "jPOS.org" must not be used to endorse * or promote products derived from this software without prior * written permission. For written permission, please contact * license@jpos.org. * * 5. Products derived from this software may not be called "jPOS", * nor may "jPOS" appear in their name, without prior written * permission of the jPOS project. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE JPOS PROJECT OR ITS CONTRIBUTORS BE LIABLE FOR * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the jPOS Project. For more * information please see <http://www.jpos.org/>. */package org.jpos.security;import org.jpos.core.ReConfigurable;import org.jpos.core.Configuration;import org.jpos.core.ConfigurationException;import org.jpos.util.NameRegistrar;import org.jpos.util.Logger;import org.jpos.util.LogSource;import org.jpos.util.LogEvent;import org.jpos.util.SimpleMsg;/** * <p> * Provides base functionality for the actual Security Module Adapter. * </p> * <p> * You adapter needs to override the methods that end with "Impl" * </p> * @author Hani S. Kirollos * @version $Revision: 1.2 $ $Date: 2002/04/22 04:50:20 $ */public class BaseSMAdapter implements SMAdapter, ReConfigurable, LogSource { protected Logger logger = null; protected String realm = null; protected Configuration cfg; private String name; public BaseSMAdapter () { super(); } public BaseSMAdapter (Configuration cfg, Logger logger, String realm) throws ConfigurationException { super(); setLogger(logger, realm); setConfiguration(cfg); } public void setConfiguration (Configuration cfg) throws ConfigurationException { this.cfg = cfg; } public void setLogger (Logger logger, String realm) { this.logger = logger; this.realm = realm; } public Logger getLogger () { return logger; } public String getRealm () { return realm; } /** * associates this SMAdapter with a name using NameRegistrar * @param name name to register * @see NameRegistrar */ public void setName (String name) { this.name = name; NameRegistrar.register("s-m-adapter." + name, this); } /** * @return this SMAdapter's name ("" if no name was set) */ public String getName () { return this.name; } /** * @param name * @return SMAdapter instance with given name. * @throws NotFoundException * @see NameRegistrar */ public static SMAdapter getSMAdapter (String name) throws NameRegistrar.NotFoundException { return (SMAdapter)NameRegistrar.get("s-m-adapter." + name); } public SecureDESKey generateKey (short keyLength, String keyType) throws SMException { SimpleMsg[] cmdParameters = { new SimpleMsg("parameter", "Key Length", keyLength), new SimpleMsg("parameter", "Key Type", keyType) }; LogEvent evt = new LogEvent(this, "s-m-operation"); evt.addMessage(new SimpleMsg("command", "Generate Key", cmdParameters)); SecureDESKey result = null; try { result = generateKeyImpl(keyLength, keyType); evt.addMessage(new SimpleMsg("result", "Generated Key", result)); } catch (Exception e) { evt.addMessage(e); throw e instanceof SMException ? (SMException) e : new SMException(e); } finally { Logger.log(evt); } return result; } public SecureDESKey importKey (short keyLength, String keyType, byte[] encryptedKey, SecureDESKey kek, boolean checkParity) throws SMException { SimpleMsg[] cmdParameters = { new SimpleMsg("parameter", "Key Length", keyLength), new SimpleMsg("parameter", "Key Type", keyType), new SimpleMsg("parameter", "Encrypted Key", encryptedKey), new SimpleMsg("parameter", "Key-Encrypting Key", kek), new SimpleMsg("parameter", "Check Parity", checkParity) }; LogEvent evt = new LogEvent(this, "s-m-operation"); evt.addMessage(new SimpleMsg("command", "Import Key", cmdParameters)); SecureDESKey result = null; try { result = importKeyImpl(keyLength, keyType, encryptedKey, kek, checkParity); evt.addMessage(new SimpleMsg("result", "Imported Key", result)); } catch (Exception e) { evt.addMessage(e); throw e instanceof SMException ? (SMException) e : new SMException(e); } finally { Logger.log(evt); } return result; } public byte[] exportKey (SecureDESKey key, SecureDESKey kek) throws SMException { SimpleMsg[] cmdParameters = { new SimpleMsg("parameter", "Key", key), new SimpleMsg("parameter", "Key-Encrypting Key", kek), }; LogEvent evt = new LogEvent(this, "s-m-operation"); evt.addMessage(new SimpleMsg("command", "Export Key", cmdParameters)); byte[] result = null; try { result = exportKeyImpl(key, kek); evt.addMessage(new SimpleMsg("result", "Exported Key", result)); } catch (Exception e) { evt.addMessage(e); throw e instanceof SMException ? (SMException) e : new SMException(e); } finally { Logger.log(evt); } return result; } public EncryptedPIN encryptPIN (String pin, String accountNumber) throws SMException { accountNumber = EncryptedPIN.extractAccountNumberPart(accountNumber); SimpleMsg[] cmdParameters = { new SimpleMsg("parameter", "clear pin", pin), new SimpleMsg("parameter", "account number", accountNumber) }; LogEvent evt = new LogEvent(this, "s-m-operation"); evt.addMessage(new SimpleMsg("command", "Encrypt Clear PIN", cmdParameters)); EncryptedPIN result = null; try { result = encryptPINImpl(pin, accountNumber); evt.addMessage(new SimpleMsg("result", "PIN under LMK", result)); } catch (Exception e) { evt.addMessage(e); throw e instanceof SMException ? (SMException) e : new SMException(e); } finally { Logger.log(evt); } return result; } public String decryptPIN (EncryptedPIN pinUnderLmk) throws SMException { SimpleMsg[] cmdParameters = { new SimpleMsg("parameter", "PIN under LMK", pinUnderLmk), }; LogEvent evt = new LogEvent(this, "s-m-operation"); evt.addMessage(new SimpleMsg("command", "Decrypt PIN", cmdParameters)); String result = null; try { result = decryptPINImpl(pinUnderLmk); evt.addMessage(new SimpleMsg("result", "clear PIN", result)); } catch (Exception e) { evt.addMessage(e); throw e instanceof SMException ? (SMException) e : new SMException(e); } finally { Logger.log(evt); } return result; } public EncryptedPIN importPIN (EncryptedPIN pinUnderKd1, SecureDESKey kd1) throws SMException { SimpleMsg[] cmdParameters = { new SimpleMsg("parameter", "PIN under Data Key 1", pinUnderKd1), new SimpleMsg("parameter", "Data Key 1", kd1), }; LogEvent evt = new LogEvent(this, "s-m-operation"); evt.addMessage(new SimpleMsg("command", "Import PIN", cmdParameters)); EncryptedPIN result = null; try { result = importPINImpl(pinUnderKd1, kd1); evt.addMessage(new SimpleMsg("result", "PIN under LMK", result)); } catch (Exception e) { evt.addMessage(e); throw e instanceof SMException ? (SMException) e : new SMException(e); } finally { Logger.log(evt);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -