diff options
author | Richard Levitte <levitte@openssl.org> | 2016-12-08 14:28:42 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2017-06-29 11:55:31 +0200 |
commit | 50ecedda40d0e57c635d673c1e66cb688ed9719e (patch) | |
tree | 561d977533d62ca40f2ba85316c932efe22746fd /include | |
parent | STORE tests: add PKCS#12 tests (diff) | |
download | openssl-50ecedda40d0e57c635d673c1e66cb688ed9719e.tar.xz openssl-50ecedda40d0e57c635d673c1e66cb688ed9719e.zip |
STORE: Add a OSSL_STORE_INFO type to help support file handler restarts
Some containers might very simply decode into something new that
deserves to be considered as new (embedded) data. With the help of a
special OSSL_STORE_INFO type, make that new data available to the
loader functions so they can start over.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3542)
Diffstat (limited to 'include')
-rw-r--r-- | include/openssl/storeerr.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/openssl/storeerr.h b/include/openssl/storeerr.h index 1458574caa..1d8695592b 100644 --- a/include/openssl/storeerr.h +++ b/include/openssl/storeerr.h @@ -34,6 +34,7 @@ int ERR_load_OSSL_STORE_strings(void); # define OSSL_STORE_F_OSSL_STORE_INFO_GET1_PKEY 105 # define OSSL_STORE_F_OSSL_STORE_INFO_NEW_CERT 106 # define OSSL_STORE_F_OSSL_STORE_INFO_NEW_CRL 107 +# define OSSL_STORE_F_OSSL_STORE_INFO_NEW_EMBEDDED 123 # define OSSL_STORE_F_OSSL_STORE_INFO_NEW_NAME 109 # define OSSL_STORE_F_OSSL_STORE_INFO_NEW_PARAMS 110 # define OSSL_STORE_F_OSSL_STORE_INFO_NEW_PKEY 111 |