summaryrefslogtreecommitdiffstats
path: root/crypto/err
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2001-05-06 23:19:37 +0000
committerRichard Levitte <levitte@openssl.org>2001-05-06 23:19:37 +0000
commita63d5eaab28a20463818b43a76ce8acd19d58812 (patch)
tree5f37af72a5a2d7462cb4b8d1bdce2e939798db51 /crypto/err
parent6af59bc095a51caa6deb092f911b44dd09b0eb0d (diff)
Add a general user interface API. This is designed to replace things
like des_read_password and friends (backward compatibility functions using this new API are provided). The purpose is to remove prompting functions from the DES code section as well as provide for prompting through dialog boxes in a window system and the like.
Diffstat (limited to 'crypto/err')
-rw-r--r--crypto/err/err.h3
-rw-r--r--crypto/err/openssl.ec1
2 files changed, 4 insertions, 0 deletions
diff --git a/crypto/err/err.h b/crypto/err/err.h
index 07c8527832..1de4620632 100644
--- a/crypto/err/err.h
+++ b/crypto/err/err.h
@@ -129,6 +129,7 @@ typedef struct err_state_st
#define ERR_LIB_DSO 37
#define ERR_LIB_ENGINE 38
#define ERR_LIB_OCSP 39
+#define ERR_LIB_UI 40
#define ERR_LIB_USER 128
@@ -155,6 +156,7 @@ typedef struct err_state_st
#define DSOerr(f,r) ERR_PUT_error(ERR_LIB_DSO,(f),(r),__FILE__,__LINE__)
#define ENGINEerr(f,r) ERR_PUT_error(ERR_LIB_ENGINE,(f),(r),__FILE__,__LINE__)
#define OCSPerr(f,r) ERR_PUT_error(ERR_LIB_OCSP,(f),(r),__FILE__,__LINE__)
+#define UIerr(f,r) ERR_PUT_error(ERR_LIB_UI,(f),(r),__FILE__,__LINE__)
/* Borland C seems too stupid to be able to shift and do longs in
* the pre-processor :-( */
@@ -204,6 +206,7 @@ typedef struct err_state_st
#define ERR_R_DSO_LIB ERR_LIB_DSO /* 37 */
#define ERR_R_ENGINE_LIB ERR_LIB_ENGINE /* 38 */
#define ERR_R_OCSP_LIB ERR_LIB_OCSP /* 39 */
+#define ERR_R_UI_LIB ERR_LIB_UI /* 40 */
#define ERR_R_NESTED_ASN1_ERROR 58
#define ERR_R_BAD_ASN1_OBJECT_HEADER 59
diff --git a/crypto/err/openssl.ec b/crypto/err/openssl.ec
index 97c12302bb..84059b6744 100644
--- a/crypto/err/openssl.ec
+++ b/crypto/err/openssl.ec
@@ -26,6 +26,7 @@ L RAND crypto/rand/rand.h crypto/rand/rand_err.c
L DSO crypto/dso/dso.h crypto/dso/dso_err.c
L ENGINE crypto/engine/engine.h crypto/engine/engine_err.c
L OCSP crypto/ocsp/ocsp.h crypto/ocsp/ocsp_err.c
+L UI crypto/ui/ui.h crypto/ui/ui_err.c
# additional header files to be scanned for function names
L NONE crypto/x509/x509_vfy.h NONE