Latest update.

This commit is contained in:
2019-10-17 23:54:38 +09:00
parent 41a23ae6f6
commit ee84d0dd84
1357 changed files with 41111 additions and 9603 deletions
+6 -6
View File
@@ -7,11 +7,11 @@
* https://www.openssl.org/source/license.html
*/
#ifndef OSSL_CORE_H
# define OSSL_CORE_H
#ifndef OPENSSL_CORE_H
# define OPENSSL_CORE_H
# include <stddef.h>
# include <openssl/ossl_typ.h>
# include <openssl/types.h>
# ifdef __cplusplus
extern "C" {
@@ -55,13 +55,13 @@ struct ossl_item_st {
};
/*
* Type to tie together algorithm name, property definition string and
* Type to tie together algorithm names, property definition string and
* the algorithm implementation in the form of a dispatch table.
*
* An array of these is always terminated by algorithm_name == NULL
* An array of these is always terminated by algorithm_names == NULL
*/
struct ossl_algorithm_st {
const char *algorithm_name; /* key */
const char *algorithm_names; /* key */
const char *property_definition; /* key */
const OSSL_DISPATCH *implementation;
};