77 lines
3.0 KiB
Java
77 lines
3.0 KiB
Java
package com.mattrixwv.cipherstream.controller.polysubstitution;
|
|
|
|
|
|
import org.slf4j.MDC;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
import com.fasterxml.jackson.databind.node.ObjectNode;
|
|
import com.mattrixwv.cipherstream.aspect.CipherStreamLoggingAspect;
|
|
import com.mattrixwv.cipherstream.polysubstitution.PolybiusSquare;
|
|
import com.mattrixwv.cipherstream.utils.CipherInfoUtil;
|
|
import com.mattrixwv.cipherstream.utils.CipherParameterUtil;
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
@Slf4j
|
|
@RestController
|
|
@RequestMapping("/cipherStream/polybius")
|
|
public class PolybiusSquareController{
|
|
@GetMapping
|
|
public ObjectNode getCipherInfo(){
|
|
MDC.put(CipherStreamLoggingAspect.CIPHER_NAME_LOGGING, CipherInfoUtil.POLYBIUS_SQUARE_CIPHER_NAME);
|
|
log.info("Getting info for {}", CipherInfoUtil.POLYBIUS_SQUARE_CIPHER_NAME);
|
|
|
|
|
|
return CipherInfoUtil.buildInfoNode(CipherInfoUtil.POLYBIUS_SQUARE_CIPHER_NAME, CipherInfoUtil.POLYBIUS_SQUARE_CIPHER_DESCRIPTION);
|
|
}
|
|
|
|
@PostMapping("/encode")
|
|
public ObjectNode encodePolybius(@RequestBody ObjectNode cipherParams){
|
|
MDC.put(CipherStreamLoggingAspect.CIPHER_NAME_LOGGING, CipherInfoUtil.POLYBIUS_SQUARE_CIPHER_NAME);
|
|
log.info("Encoding {}", CipherInfoUtil.POLYBIUS_SQUARE_CIPHER_NAME);
|
|
|
|
|
|
CipherParameterUtil.verifyPolybiusParams(cipherParams);
|
|
boolean preserveWhitespace = cipherParams.get(CipherParameterUtil.PRESERVE_WHITESPACE).asBoolean();
|
|
boolean preserveSymbols = cipherParams.get(CipherParameterUtil.PRESERVE_SYMBOLS).asBoolean();
|
|
String keyword = cipherParams.get(CipherParameterUtil.KEYWORD).asText();
|
|
String inputString = cipherParams.get(CipherParameterUtil.INPUT_STRING).asText();
|
|
|
|
|
|
PolybiusSquare polybiusSquare = new PolybiusSquare(preserveWhitespace, preserveSymbols);
|
|
String outputString = polybiusSquare.encode(keyword, inputString);
|
|
|
|
cipherParams.put(CipherParameterUtil.OUTPUT_STRING, outputString);
|
|
|
|
|
|
return cipherParams;
|
|
}
|
|
|
|
@PostMapping("/decode")
|
|
public ObjectNode decodePolybius(@RequestBody ObjectNode cipherParams){
|
|
MDC.put(CipherStreamLoggingAspect.CIPHER_NAME_LOGGING, CipherInfoUtil.POLYBIUS_SQUARE_CIPHER_NAME);
|
|
log.info("Decoding {}", CipherInfoUtil.POLYBIUS_SQUARE_CIPHER_NAME);
|
|
|
|
|
|
CipherParameterUtil.verifyPolybiusParams(cipherParams);
|
|
boolean preserveWhitespace = cipherParams.get(CipherParameterUtil.PRESERVE_WHITESPACE).asBoolean();
|
|
boolean preserveSymbols = cipherParams.get(CipherParameterUtil.PRESERVE_SYMBOLS).asBoolean();
|
|
String keyword = cipherParams.get(CipherParameterUtil.KEYWORD).asText();
|
|
String inputString = cipherParams.get(CipherParameterUtil.INPUT_STRING).asText();
|
|
|
|
|
|
PolybiusSquare polybiusSquare = new PolybiusSquare(preserveWhitespace, preserveSymbols);
|
|
String outputString = polybiusSquare.decode(keyword, inputString);
|
|
|
|
cipherParams.put(CipherParameterUtil.OUTPUT_STRING, outputString);
|
|
|
|
|
|
return cipherParams;
|
|
}
|
|
}
|