Latest update

This commit is contained in:
2019-04-01 00:21:15 +09:00
parent c03e0c45f8
commit 48ec086472
209 changed files with 7552 additions and 2495 deletions
+41
View File
@@ -0,0 +1,41 @@
/*
* Copyright 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
*/
#ifndef OSSL_CORE_NAMES_H
# define OSSL_CORE_NAMES_H
# ifdef __cplusplus
extern "C" {
# endif
/*
* Well known parameter names that Providers can define
*/
/*
* A printable name for this provider
* Type: OSSL_PARAM_UTF8_STRING
*/
#define OSSL_PROV_PARAM_NAME "name"
/*
* A version string for this provider
* Type: OSSL_PARAM_UTF8_STRING
*/
#define OSSL_PROV_PARAM_VERSION "version"
/*
* A string providing provider specific build information
* Type: OSSL_PARAM_UTF8_STRING
*/
#define OSSL_PROV_PARAM_BUILDINFO "buildinfo"
# ifdef __cplusplus
}
# endif
#endif