mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2026-02-03 04:23:11 +01:00
27 lines
667 B
C
27 lines
667 B
C
/*
|
|
* Copyright (C) 2020 iopsys Software Solutions AB
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License version 2.1
|
|
* as published by the Free Software Foundation
|
|
*
|
|
* Author: Omar Kallel <omar.kallel@pivasoftware.com>
|
|
*/
|
|
|
|
#ifndef __SECURITY_H
|
|
#define __SECURITY_H
|
|
|
|
#ifdef LOPENSSL
|
|
#include <libbbf_api/dmcommon.h>
|
|
#include <openssl/x509.h>
|
|
#include <openssl/x509v3.h>
|
|
#include <openssl/pem.h>
|
|
#include <openssl/obj_mac.h>
|
|
|
|
extern DMOBJ tSecurityObj[];
|
|
extern DMLEAF tSecurityParams[];
|
|
extern DMLEAF tSecurityCertificateParams[];
|
|
#endif /* LOPENSSL */
|
|
|
|
#endif //__SECURITY_H
|
|
|