File: libressl-is-used.cpp

package info (click to toggle)
scitokens-cpp 1.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,988 kB
  • sloc: cpp: 25,363; makefile: 14
file content (13 lines) | stat: -rw-r--r-- 176 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#if !__has_include(<tls.h>)
#error "missing LibreSSL's TLS header!"
#endif

#include <tls.h>

#include "jwt-cpp/jwt.h"

int main() {
	tls_init();
	jwt::date date;
	return 0;
}