d5e5e2ffaf
Move digest code into the relevant providers (fips, default, legacy). The headers are temporarily moved to be internal, and will be moved into providers after all external references are resolved. The deprecated digest code can not be removed until EVP_PKEY (signing) is supported by providers. EVP_MD data can also not yet be cleaned up for the same reasons. Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/8763)
37 lines
1.1 KiB
C
37 lines
1.1 KiB
C
/*
|
|
* Copyright 1995-2019 The OpenSSL Project Authors. All Rights Reserved.
|
|
*
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
* in the file LICENSE in the source distribution or at
|
|
* https://www.openssl.org/source/license.html
|
|
*/
|
|
|
|
/* TODO(3.0) Move this header into provider when dependencies are removed */
|
|
#ifndef HEADER_MD5_SHA1_H
|
|
# define HEADER_MD5_SHA1_H
|
|
|
|
# include <openssl/opensslconf.h>
|
|
|
|
# ifndef OPENSSL_NO_MD5
|
|
# include <openssl/e_os2.h>
|
|
# include <stddef.h>
|
|
# include <openssl/md5.h>
|
|
# include <openssl/sha.h>
|
|
|
|
# define MD5_SHA1_DIGEST_LENGTH (MD5_DIGEST_LENGTH + SHA_DIGEST_LENGTH)
|
|
# define MD5_SHA1_CBLOCK MD5_CBLOCK
|
|
|
|
typedef struct md5_sha1_st {
|
|
MD5_CTX md5;
|
|
SHA_CTX sha1;
|
|
} MD5_SHA1_CTX;
|
|
|
|
int md5_sha1_init(MD5_SHA1_CTX *mctx);
|
|
int md5_sha1_update(MD5_SHA1_CTX *mctx, const void *data, size_t count);
|
|
int md5_sha1_final(unsigned char *md, MD5_SHA1_CTX *mctx);
|
|
int md5_sha1_ctrl(MD5_SHA1_CTX *mctx, int cmd, int mslen, void *ms);
|
|
|
|
# endif /* OPENSSL_NO_MD5 */
|
|
|
|
#endif /* HEADER_MD5_SHA1_H */
|