Interface RSAEngine


public interface RSAEngine
Basic unblinded RSA engine implementation. Used to abstract away calls to native backed RSA and Java RSA
  • Method Details

    • getInputBlockSize

      int getInputBlockSize()
    • getOutputBlockSize

      int getOutputBlockSize()
    • convertInput

      BigInteger convertInput(byte[] in, int inOff, int inLen)
    • processBlock

      BigInteger processBlock(BigInteger blindedInput)
    • convertOutput

      byte[] convertOutput(BigInteger result)
    • init

      void init(boolean forEncryption, org.bouncycastle.crypto.internal.CipherParameters param)