aboutsummaryrefslogtreecommitdiff
path: root/have
diff options
context:
space:
mode:
authorOmar Polo <op@omarpolo.com>2021-01-25 15:06:59 +0000
committerOmar Polo <op@omarpolo.com>2021-01-25 15:06:59 +0000
commit2b15ad28601c1e5c287f86889f394539f51ace92 (patch)
tree2d7c723018af88b4ed281bc839814d553a502dd2 /have
parent10782292833e092d37935a2c8b9e8e00bb88925d (diff)
adding openssl test
Diffstat (limited to 'have')
-rw-r--r--have/openssl.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/have/openssl.c b/have/openssl.c
new file mode 100644
index 0000000..7590e21
--- /dev/null
+++ b/have/openssl.c
@@ -0,0 +1,28 @@
+/*
+ * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#include <openssl/x509.h>
+
+int
+main(void)
+{
+ X509 *x509;
+
+ if ((x509 = X509_new()) == NULL)
+ return 1;
+ X509_free(x509);
+ return 0;
+}