return make_auth_context_specific(mem_ctx, auth_context, methods);
}
-bool auth3_context_set_challenge(struct auth_context *ctx, uint8_t chal[8],
- const char *challenge_set_by)
+bool auth3_context_set_challenge(
+ struct auth_context *ctx,
+ const uint8_t chal[8],
+ const char *challenge_set_by)
{
ctx->challenge = data_blob_talloc(ctx, chal, 8);
if (ctx->challenge.data == NULL) {
struct auth_context **auth_context);
NTSTATUS make_auth3_context_for_winbind(TALLOC_CTX *mem_ctx,
struct auth_context **auth_context);
-bool auth3_context_set_challenge(struct auth_context *ctx, uint8_t chal[8],
- const char *challenge_set_by);
+bool auth3_context_set_challenge(
+ struct auth_context *ctx,
+ const uint8_t chal[8],
+ const char *challenge_set_by);
/****************************************************************************
Try to get a challenge out of the various authentication modules.