s3: rpc_client: Allocate struct db_context * off the local frame, as all other variab...
[Samba.git] / source4 / kdc / mit-kdb / kdb_samba_masterkey.c
blob2c4fe72d8c210e12b8f53024ec14dfa171f5afc4
1 /*
2 Unix SMB/CIFS implementation.
4 Samba KDB plugin for MIT Kerberos
6 Copyright (c) 2010 Simo Sorce <idra@samba.org>.
7 Copyright (c) 2014 Andreas Schneider <asn@samba.org>
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "includes.h"
26 #include "system/kerberos.h"
28 #include <profile.h>
29 #include <kdb.h>
31 #include "kdc/mit_samba.h"
32 #include "kdb_samba.h"
34 krb5_error_code kdb_samba_fetch_master_key(krb5_context context,
35 krb5_principal name,
36 krb5_keyblock *key,
37 krb5_kvno *kvno,
38 char *db_args)
40 return 0;
43 krb5_error_code kdb_samba_fetch_master_key_list(krb5_context context,
44 krb5_principal mname,
45 const krb5_keyblock *key,
46 krb5_keylist_node **mkeys_list)
48 krb5_keylist_node *mkey;
51 * NOTE: samba does not support master keys
52 * so just return a dummy key
54 mkey = calloc(1, sizeof(krb5_keylist_node));
55 if (mkey == NULL) {
56 return ENOMEM;
59 mkey->keyblock.magic = KV5M_KEYBLOCK;
60 mkey->keyblock.enctype = ENCTYPE_UNKNOWN;
61 mkey->kvno = 1;
63 *mkeys_list = mkey;
65 return 0;