예제 #1
0
 public ECPrivateKey decryptKey(byte[] key)
     throws org.whispersystems.libaxolotl.InvalidKeyException {
   try {
     return Curve.decodePrivatePoint(decryptBytes(key));
   } catch (InvalidMessageException ime) {
     throw new org.whispersystems.libaxolotl.InvalidKeyException(ime);
   }
 }