wolfssl_dsp.idl 375 B

12345678910111213
  1. #ifndef WOLFSSL_DSP_INC
  2. #define WOLFSSL_DSP_INC
  3. #include "AEEStdDef.idl"
  4. #include "remote.idl"
  5. interface wolfSSL: remote_handle64{
  6. /* ecc operations */
  7. long DSP_ECC_Verify_256(inrout sequence<int32> hash, inrout sequence<int32> pX, inrout sequence<int32> pY,
  8. inrout sequence<int32> pZ, inrout sequence<int32> r, inrout sequence<int32> sm, inrout long res);
  9. };
  10. #endif