I want using CRC16, but first, i want to convert string to hex. because integer must be 16 bytes. i still confused to encrypt using CRC16. this is my code.
public static void main(String[] args) {
String input = "skn";
byte[] valuesDefault = input.getBytes();
System.out.println("input:" + input);
System.out.println(Arrays.toString(valuesDefault));
}