Example #1
0
 public static byte[] rsaSign(
     @NotNull byte[] pkcs8encodedPrivateKey,
     @NotNull DigestAlgorithm digestAlgorithms,
     @NotNull byte[] data)
     throws InvalidKeyException {
   return engine.rsaSign(pkcs8encodedPrivateKey, digestAlgorithms, data);
 }