ua_securitypolicy_none.h 729 B

123456789101112131415161718192021222324252627
  1. /* This work is licensed under a Creative Commons CCZero 1.0 Universal License.
  2. * See http://creativecommons.org/publicdomain/zero/1.0/ for more information.
  3. *
  4. * Copyright 2017 (c) Mark Giraud, Fraunhofer IOSB
  5. * Copyright 2017 (c) Stefan Profanter, fortiss GmbH
  6. */
  7. #ifndef UA_SECURITYPOLICY_NONE_H_
  8. #define UA_SECURITYPOLICY_NONE_H_
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. #include "ua_plugin_securitypolicy.h"
  13. #include "ua_plugin_log.h"
  14. UA_StatusCode UA_EXPORT
  15. UA_SecurityPolicy_None(UA_SecurityPolicy *policy, UA_CertificateVerification *certificateVerification,
  16. const UA_ByteString localCertificate, UA_Logger logger);
  17. #ifdef __cplusplus
  18. }
  19. #endif
  20. #endif /* UA_SECURITYPOLICY_NONE_H_ */