src-main.org.awakefw.sql.util.crypto.StatementHolderCrypto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of awake-sql Show documentation
Show all versions of awake-sql Show documentation
Awake SQL is an open source framework that allows remote and secure JDBC access through HTTP.
The newest version!
/*
* This file is part of Awake SQL.
* Awake SQL: Remote JDBC access over HTTP.
* Copyright (C) 2013, KawanSoft SAS
* (http://www.kawansoft.com). All rights reserved.
*
* Awake SQL 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 3 of the License, or
* (at your option) any later version.
*
* Awake SQL 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 General Public License
* along with this program; if not, see .
*
* If you develop commercial activities using Awake SQL, you must:
* a) disclose and distribute all source code of your own product,
* b) license your own product under the GNU General Public License.
*
* You can be released from the requirements of the license by
* purchasing a commercial license. Buying such a license will allow you
* to ship Awake SQL with your closed source products without disclosing
* the source code.
*
* For more information, please contact KawanSoft SAS at this
* address: [email protected]
*
* Any modifications to this file must keep this entire header
* intact.
*/
package org.awakefw.sql.util.crypto;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
import javax.crypto.Cipher;
import org.apache.commons.lang3.StringUtils;
import org.awakefw.file.api.util.HtmlConverter;
import org.awakefw.file.util.convert.Pbe;
import org.awakefw.sql.json.StatementHolder;
/**
* Class to encrypt/obsfucate a Statement Holder
*
* @author Nicolas de Pomereu
*/
public class StatementHolderCrypto {
/** The statement holder to crypt/decrypt */
private StatementHolder statementHolder = null;
/** The encryption password */
private char[] password = null;
/**
* Constructor
*
* @param statementHolder
* the statement holder to crypt/decrypt
* @param password
* The encryption password
*/
public StatementHolderCrypto(StatementHolder statementHolder,
char[] password) {
this.statementHolder = statementHolder;
this.password = password;
}
/**
* Encrypt the StatementHolder
*
* @param encryptParameters
* if true, encrypt the String parameters
* @return the encrypted the StatementHolder
* @throws Exception
*/
public StatementHolder encrypt(boolean encryptParameters) throws Exception {
statementHolder.setParamatersEncrypted(encryptParameters);
cipher(Cipher.ENCRYPT_MODE);
return statementHolder;
}
/**
* Decrypt the StatementHolder
*
* @return the decrypted StatementHolder
* @throws Exception
*/
public StatementHolder decrypt() throws Exception {
cipher(Cipher.DECRYPT_MODE);
return statementHolder;
}
/**
* Encrypt the StatementHolder
*
* @param mode
* @throws Exception
*/
private void cipher(int mode) throws Exception {
if (mode != Cipher.ENCRYPT_MODE && mode != Cipher.DECRYPT_MODE) {
throw new IllegalArgumentException("Invalid Cipher Mode: " + mode);
}
String sqlOrder = this.statementHolder.getSqlOrder();
// do nothing on empty sql order
if (sqlOrder == null || sqlOrder.isEmpty()) {
return;
}
Pbe pbe = new Pbe();
if (mode == Cipher.ENCRYPT_MODE) {
// Need to re-Html Convert sqlOrder
sqlOrder = HtmlConverter.toHtml(sqlOrder);
sqlOrder = pbe.encryptToHexa(sqlOrder, password);
this.statementHolder.setSqlOrder(Pbe.AWAKE_ENCRYPTED + sqlOrder);
} else {
if (sqlOrder.startsWith(Pbe.AWAKE_ENCRYPTED)) {
sqlOrder = StringUtils.substringAfter(sqlOrder,
Pbe.AWAKE_ENCRYPTED);
sqlOrder = pbe.decryptFromHexa(sqlOrder, password);
this.statementHolder.setSqlOrder(sqlOrder);
} else {
return; // do nothing if it was not encrypted at start
}
}
if (statementHolder.isParamatersEncrypted()) {
Map parmValues = this.statementHolder
.getParameterStringValues();
Set keys = parmValues.keySet();
for (Iterator iterator = keys.iterator(); iterator
.hasNext();) {
Integer key = iterator.next();
String value = parmValues.get(key);
if (value != null) {
if (mode == Cipher.ENCRYPT_MODE) {
value = pbe.encryptToHexa(value, password);
} else {
value = pbe.decryptFromHexa(value, password);
}
// This will automatically refresh the inside value
parmValues.put(key, value);
}
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy