Skip to content

Commit

Permalink
go back to system package
Browse files Browse the repository at this point in the history
  • Loading branch information
paulofaria committed May 23, 2017
1 parent 38c4c96 commit ba1e737
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
5 changes: 5 additions & 0 deletions module.modulemap
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module COpenSSL [system] {
header "openssl.h"
link "ssl"
link "crypto"
}
22 changes: 22 additions & 0 deletions openssl.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#ifndef __ZEWO_OPENSSL_H__
#define __ZEWO_OPENSSL_H__

#include <openssl/evp.h>
#include <openssl/e_os2.h>
#include <openssl/rand.h>
#include <openssl/err.h>
#include <openssl/crypto.h>
#include <openssl/md5.h>
#include <openssl/ssl.h>
#include <openssl/x509v3.h>
#include <openssl/bn.h>
#include <openssl/srtp.h>
#include <openssl/conf.h>
#include <openssl/bio.h>
#include <openssl/md4.h>
#include <openssl/sha.h>
#include <openssl/hmac.h>
#include <openssl/ripemd.h>
#include <openssl/pkcs12.h>

#endif

0 comments on commit ba1e737

Please sign in to comment.