mirror of
https://github.com/samba-team/samba.git
synced 2025-01-07 17:18:11 +03:00
85fbdcd048
Signed-off-by: Jo Sutton <josutton@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
72 lines
2.1 KiB
C
72 lines
2.1 KiB
C
/*
|
||
Unix SMB/CIFS implementation.
|
||
Group Key Distribution Protocol functions
|
||
|
||
Copyright (C) Catalyst.Net Ltd 2024
|
||
|
||
This program is free software: you can redistribute it and/or modify
|
||
it under the terms of the GNU General Public License as published by
|
||
the Free Software Foundation, either version 3 of the License, or
|
||
(at your option) any later version.
|
||
|
||
This program is distributed in the hope that it will be useful,
|
||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
GNU General Public License for more details.
|
||
|
||
You should have received a copy of the GNU General Public License
|
||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||
*/
|
||
|
||
#ifndef DSDB_GMSA_GKDI_H
|
||
#define DSDB_GMSA_GKDI_H
|
||
|
||
#include <talloc.h>
|
||
#include "lib/util/data_blob.h"
|
||
#include "lib/util/time.h"
|
||
#include "libcli/util/ntstatus.h"
|
||
#include "librpc/gen_ndr/misc.h"
|
||
|
||
struct ldb_message;
|
||
struct ProvRootKey;
|
||
NTSTATUS gkdi_root_key_from_msg(TALLOC_CTX *mem_ctx,
|
||
const struct GUID root_key_id,
|
||
const struct ldb_message *const msg,
|
||
const struct ProvRootKey **const root_key_out);
|
||
|
||
/*
|
||
* Calculate an appropriate useStartTime for a root key created at
|
||
* ‘current_time’.
|
||
*
|
||
* This function goes unused.
|
||
*/
|
||
NTTIME gkdi_root_key_use_start_time(const NTTIME current_time);
|
||
|
||
/*
|
||
* Create and return a new GKDI root key.
|
||
*
|
||
* This function goes unused.
|
||
*/
|
||
struct ldb_context;
|
||
int gkdi_new_root_key(TALLOC_CTX *mem_ctx,
|
||
struct ldb_context *const ldb,
|
||
const NTTIME current_time,
|
||
const NTTIME use_start_time,
|
||
struct GUID *const root_key_id_out,
|
||
const struct ldb_message **const root_key_out);
|
||
|
||
int gkdi_root_key_from_id(TALLOC_CTX *mem_ctx,
|
||
struct ldb_context *const ldb,
|
||
const struct GUID *const root_key_id,
|
||
const struct ldb_message **const root_key_out);
|
||
|
||
int gkdi_most_recently_created_root_key(
|
||
TALLOC_CTX *mem_ctx,
|
||
struct ldb_context *const ldb,
|
||
const NTTIME current_time,
|
||
const NTTIME not_after,
|
||
struct GUID *const root_key_id_out,
|
||
const struct ldb_message **const root_key_out);
|
||
|
||
#endif /* DSDB_GMSA_GKDI_H */
|