summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-05-07 21:17:30 +0000
committerRichard Levitte <levitte@openssl.org>2003-05-07 21:17:30 +0000
commitbca52f7d4e3a7883594b253d085ed9034234c43a (patch)
treef0c65d31656494e2e9282f6b2f939363b5095d3e
parent48c36fdb2a0dc64de750369dd8bdf4dd9c54ef18 (diff)
Define the two authentication parameter types for passphrase and
Kerberos 5 authentications.
-rw-r--r--crypto/store/store.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto/store/store.h b/crypto/store/store.h
index 64a3f3dae6..5dba567c57 100644
--- a/crypto/store/store.h
+++ b/crypto/store/store.h
@@ -156,7 +156,9 @@ typedef enum STORE_params
STORE_PARAM_BITS= 0x02, /* size_t */
STORE_PARAM_KEY_PARAMETERS= 0x03, /* ??? */
STORE_PARAM_KEY_NO_PARAMETERS= 0x04, /* N/A */
- STORE_PARAM_TYPE_NUM= 0x04 /* The amount of known
+ STORE_PARAM_AUTH_PASSPHRASE= 0x05, /* char * */
+ STORE_PARAM_AUTH_KRB5_TICKET= 0x06, /* void * */
+ STORE_PARAM_TYPE_NUM= 0x06 /* The amount of known
parameter types */
} STORE_PARAM_TYPES;
/* Parameter value sizes. -1 means unknown, anything else is the required size. */