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