File: openssl-version.c

package info (click to toggle)
libcrypt-ssleay-perl 0.73.06-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 528 kB
  • sloc: perl: 732; makefile: 9; ansic: 7
file content (8 lines) | stat: -rw-r--r-- 161 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
#include <stdio.h>
#include <openssl/opensslv.h>

int main(void) {
    puts(OPENSSL_VERSION_TEXT);
    printf("%8lx\n", OPENSSL_VERSION_NUMBER);
    return 0;
}