123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- extern "C" {
- typedef struct funcs_called {
- bool asym_enc
- bool asym_dec
- bool sym_enc
- bool sym_dec
- bool asym_sign
- bool asym_verify
- bool sym_sign
- bool sym_verify
- bool newContext
- bool deleteContext
- bool makeCertificateThumbprint
- bool generateKey
- bool setLocalSymEncryptingKey
- bool setLocalSymSigningKey
- bool setLocalSymIv
- bool setRemoteSymEncryptingKey
- bool setRemoteSymSigningKey
- bool setRemoteSymIv
- } funcs_called
- UA_StatusCode UA_EXPORT
- TestingPolicy(UA_SecurityPolicy *policy, const UA_ByteString localCertificate,
- funcs_called *fCalled)
- }
|