Beispiel #1
0
 @Override
 public String decrypt(String value) {
   try {
     Cipher cipher = Cipher.getInstance(RSA_ECB_PKCS1_PADDING);
     cipher.init(Cipher.DECRYPT_MODE, privateKey);
     return ByteUtils.toString(cipher.doFinal(Base64.decode(value)));
   } catch (Exception e) {
     throw new RuntimeException(e);
   }
 }