-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CryptoService now use a Supplier<String> to get its password
We added a simple 'SensitiveString' that encrypts/obfuscates the String using AES in order to minimize the chances of the clear unlock password gets swapped to disk.
- Loading branch information
Showing
4 changed files
with
160 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
105 changes: 105 additions & 0 deletions
105
modules/cryptoservice/src/main/java/org/jpos/crypto/SensitiveString.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
/* | ||
* jPOS Project [http://jpos.org] | ||
* Copyright (C) 2000-2018 jPOS Software SRL | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero 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 Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package org.jpos.crypto; | ||
|
||
import org.jpos.iso.ISOUtil; | ||
import org.jpos.security.SystemSeed; | ||
|
||
import javax.crypto.*; | ||
import javax.crypto.spec.IvParameterSpec; | ||
import java.nio.ByteBuffer; | ||
import java.security.*; | ||
import java.util.Arrays; | ||
import java.util.Objects; | ||
import java.util.Random; | ||
import java.util.function.Supplier; | ||
|
||
public class SensitiveString implements Supplier<String> { | ||
private SecretKey key; | ||
private byte[] encoded; | ||
private static Random rnd; | ||
private static final String AES = "AES/CBC/PKCS5Padding"; | ||
|
||
static { | ||
try { | ||
rnd = SecureRandom.getInstanceStrong(); | ||
} catch (NoSuchAlgorithmException e) { | ||
throw new RuntimeException(e.getMessage()); | ||
} | ||
} | ||
|
||
|
||
public SensitiveString(String s) throws NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException, IllegalBlockSizeException, BadPaddingException, NoSuchProviderException, InvalidAlgorithmParameterException { | ||
key = generateKey(); | ||
encoded = encrypt(s.getBytes()); | ||
} | ||
|
||
@Override | ||
public boolean equals(Object o) { | ||
if (this == o) return true; | ||
if (o == null || getClass() != o.getClass()) return false; | ||
SensitiveString that = (SensitiveString) o; | ||
return this.get().equals(that.get()); | ||
} | ||
|
||
private SecretKey generateKey() throws NoSuchAlgorithmException { | ||
KeyGenerator keyGen = KeyGenerator.getInstance("AES"); | ||
int maxKeyLength = Cipher.getMaxAllowedKeyLength(keyGen.getAlgorithm()); | ||
keyGen.init(maxKeyLength == Integer.MAX_VALUE ? 256 : maxKeyLength); | ||
return keyGen.generateKey(); | ||
} | ||
|
||
private byte[] encrypt(byte[] b) throws NoSuchPaddingException, NoSuchAlgorithmException, NoSuchProviderException, InvalidAlgorithmParameterException, InvalidKeyException, BadPaddingException, IllegalBlockSizeException { | ||
final Cipher cipher = Cipher.getInstance(AES); | ||
final byte[] iv = randomIV(); | ||
cipher.init(Cipher.ENCRYPT_MODE, key, new IvParameterSpec(iv)); | ||
byte[] enc = cipher.doFinal(b); | ||
ByteBuffer buf = ByteBuffer.allocate(iv.length + enc.length); | ||
buf.put(ISOUtil.xor(iv, SystemSeed.getSeed(iv.length, iv.length))); | ||
buf.put(enc); | ||
return buf.array(); | ||
} | ||
private byte[] decrypt(byte[] encoded) | ||
throws NoSuchPaddingException, NoSuchAlgorithmException, InvalidKeyException, BadPaddingException, | ||
IllegalBlockSizeException, NoSuchProviderException, InvalidAlgorithmParameterException | ||
{ | ||
byte[] iv = new byte[16]; | ||
byte[] cryptogram = new byte[encoded.length - iv.length]; | ||
System.arraycopy(encoded, 0, iv, 0, iv.length); | ||
System.arraycopy(encoded, iv.length, cryptogram, 0, cryptogram.length); | ||
final Cipher cipher = Cipher.getInstance(AES); | ||
cipher.init(Cipher.DECRYPT_MODE, key, new IvParameterSpec(ISOUtil.xor(iv, SystemSeed.getSeed(iv.length, iv.length)))); | ||
return cipher.doFinal(cryptogram); | ||
} | ||
|
||
private byte[] randomIV() { | ||
final byte[] b = new byte[16]; | ||
rnd.nextBytes(b); | ||
return b; | ||
} | ||
|
||
@Override | ||
public String get() { | ||
try { | ||
return new String(decrypt(encoded)); | ||
} catch (NoSuchPaddingException | NoSuchAlgorithmException | BadPaddingException | InvalidKeyException | NoSuchProviderException | IllegalBlockSizeException | InvalidAlgorithmParameterException e) { | ||
throw new AssertionError(e.getMessage()); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
modules/cryptoservice/src/test/java/org/jpos/crypto/SensitiveStringTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package org.jpos.crypto; | ||
|
||
import org.junit.Test; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
|
||
public class SensitiveStringTest { | ||
@Test | ||
public void testSS() throws Exception { | ||
String s = this.toString(); | ||
for (int i=0; i<15; i++) { | ||
SensitiveString ss = new SensitiveString(s); | ||
assertEquals("Should be equal", s, ss.get()); | ||
s = s + System.lineSeparator() + s; | ||
} | ||
} | ||
|
||
@Test | ||
public void testSSEquals() throws Exception { | ||
String s = "The quick brown fox jumps over the lazy dog"; | ||
SensitiveString ss0 = new SensitiveString(s); | ||
SensitiveString ss1 = new SensitiveString(s); | ||
assertEquals ("Equals should be true", ss0, ss1); | ||
} | ||
} |