
org.jpos.q2.cli.OBF Maven / Gradle / Ivy
/*
* jPOS Project [http://jpos.org]
* Copyright (C) 2000-2021 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 .
*/
package org.jpos.q2.cli;
import org.jpos.iso.ISOUtil;
import org.jpos.q2.CLICommand;
import org.jpos.q2.CLIContext;
import org.jpos.security.SystemSeed;
import java.nio.ByteBuffer;
import java.security.SecureRandom;
import java.util.Base64;
/**
* Obfuscate a secret
*/
public class OBF implements CLICommand {
@Override
public void exec(CLIContext cli, String[] args) throws Exception {
if (args.length != 2) {
usage(cli);
return;
}
cli.println (String.format("obf::%s", obf(args[1])));
}
public void usage(CLIContext cli) {
cli.println("Usage: obf \"secret\"");
}
private String obf(String s) {
SecureRandom sr = new SecureRandom();
byte[] b = s.getBytes();
byte[] e = new byte[Math.abs(sr.nextInt()) % 32];
int i = Math.abs(sr.nextInt());
sr.nextBytes(e);
b = ISOUtil.xor(b, SystemSeed.getSeed(i, b.length));
ByteBuffer buf = ByteBuffer.allocate(b.length + e.length + 8);
buf.putInt(i);
buf.putInt(b.length);
buf.put(b);
buf.put(e);
return Base64.getEncoder().encodeToString(buf.array());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy