summaryrefslogtreecommitdiffstats
path: root/src/include/kdb.h
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2010-07-02 20:16:21 +0000
committerGreg Hudson <ghudson@mit.edu>2010-07-02 20:16:21 +0000
commit177975bb4e463da07c756f6603e9f4adc97d3cfa (patch)
treebd5315332e18b0a03ca5b16886607a511c6614c2 /src/include/kdb.h
parentf6e3bd28d32e584b6b4bcfe63a48466c97428b59 (diff)
downloadkrb5-177975bb4e463da07c756f6603e9f4adc97d3cfa.tar.gz
krb5-177975bb4e463da07c756f6603e9f4adc97d3cfa.tar.xz
krb5-177975bb4e463da07c756f6603e9f4adc97d3cfa.zip
Remove store_master_key from the DAL table, and implement
krb5_store_master_key in terms of krb5_store_master_key_list. ticket: 6749 status: open git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@24168 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include/kdb.h')
-rw-r--r--src/include/kdb.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/include/kdb.h b/src/include/kdb.h
index b959b15728..f7765c58b0 100644
--- a/src/include/kdb.h
+++ b/src/include/kdb.h
@@ -688,14 +688,6 @@ krb5_dbe_def_search_enctype( krb5_context kcontext,
krb5_key_data **kdatap);
krb5_error_code
-krb5_def_store_mkey( krb5_context context,
- char *keyfile,
- krb5_principal mname,
- krb5_kvno kvno,
- krb5_keyblock *key,
- char *master_pwd);
-
-krb5_error_code
krb5_def_store_mkey_list( krb5_context context,
char *keyfile,
krb5_principal mname,
@@ -1124,19 +1116,6 @@ typedef struct _kdb_vftabl {
krb5_keylist_node **keylist);
/*
- * Optional with default: Save a master keyblock into the stash file
- * db_arg. master_pwd indicates the password used to derive the keyblock,
- * if it is known. mname is the name of the master principal for the
- * realm.
- *
- * The default implementation ignores master_pwd and saves the master key
- * in a keytab-format file.
- */
- krb5_error_code (*store_master_key)(krb5_context kcontext, char *db_arg,
- krb5_principal mname, krb5_kvno kvno,
- krb5_keyblock *key, char *master_pwd);
-
- /*
* Optional with default: Retrieve a master keyblock from the stash file
* db_args, filling in *key and *kvno. mname is the name of the master
* principal for the realm.