diff options
| author | Gary Lin <glin@suse.com> | 2017-04-06 15:54:00 +0800 |
|---|---|---|
| committer | Peter Jones <pjones@redhat.com> | 2017-04-11 10:42:18 -0400 |
| commit | d064bd7eef201f26cb926450a76260b5187ac689 (patch) | |
| tree | 31e32f58f8c5b17b57e674d40a585d119857d21b /Cryptlib/Include/openssl/md2.h | |
| parent | 9bc86cfd6f9387f0da9d5c0102b6aa5627e91c91 (diff) | |
| download | efi-boot-shim-d064bd7eef201f26cb926450a76260b5187ac689.tar.gz efi-boot-shim-d064bd7eef201f26cb926450a76260b5187ac689.zip | |
Cryptlib: Update to the latest edk2 commit
- Update to edk2 commit 7c410b3d4180087020c7734bf67cdc4ad9fdb136
CryptoPkg/BaseCryptLib: Adding NULL checking in time() wrapper.
- Update headers in Cryptlib/Include/openssl/ to 1.1.0e
+ Also copy the openssl internal headers
Signed-off-by: Gary Lin <glin@suse.com>
Diffstat (limited to 'Cryptlib/Include/openssl/md2.h')
| -rw-r--r-- | Cryptlib/Include/openssl/md2.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/Cryptlib/Include/openssl/md2.h b/Cryptlib/Include/openssl/md2.h new file mode 100644 index 00000000..7faf8e3d --- /dev/null +++ b/Cryptlib/Include/openssl/md2.h @@ -0,0 +1,44 @@ +/* + * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. + * + * Licensed under the OpenSSL license (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 + */ + +#ifndef HEADER_MD2_H +# define HEADER_MD2_H + +# include <openssl/opensslconf.h> + +# ifndef OPENSSL_NO_MD2 +# include <stddef.h> +# ifdef __cplusplus +extern "C" { +# endif + +typedef unsigned char MD2_INT; + +# define MD2_DIGEST_LENGTH 16 +# define MD2_BLOCK 16 + +typedef struct MD2state_st { + unsigned int num; + unsigned char data[MD2_BLOCK]; + MD2_INT cksm[MD2_BLOCK]; + MD2_INT state[MD2_BLOCK]; +} MD2_CTX; + +const char *MD2_options(void); +int MD2_Init(MD2_CTX *c); +int MD2_Update(MD2_CTX *c, const unsigned char *data, size_t len); +int MD2_Final(unsigned char *md, MD2_CTX *c); +unsigned char *MD2(const unsigned char *d, size_t n, unsigned char *md); + +# ifdef __cplusplus +} +# endif +# endif + +#endif |
