1/*
2 * digestOpenssl.cpp - use the common code in digestCommon.h as actual openssl calls
3 */
4
5#include <stddef.h>
6#include <openssl/md2.h>
7#include <openssl/md4.h>
8#include <openssl/md5.h>
9/* No OpenSSL implementation nor prototypes for the SHA-2 functions.
10   #include <openssl/fips_sha.h> */
11#include <openssl/sha.h>
12
13#include "digestCommon.h"
14
15