blob: c12d2c3ecf36ad9497d9264a3c9fce3375679ee0 [file] [log] [blame]
/*
* Copyright (c) 2025, Arm Limited. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include <stddef.h>
#include <drivers/auth/auth_util.h>
static const char *current_pk_oid;
const char *get_current_pk_oid(void)
{
return current_pk_oid;
}
void set_current_pk_oid(const char *pk_oid)
{
current_pk_oid = pk_oid;
}