xref: /rk3399_ARM-atf/drivers/auth/auth_util.c (revision 06f3c7058c42a9f1a9f7df75ea2de71a000855e8)
1 /*
2  * Copyright (c) 2025, Arm Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #include <stddef.h>
8 
9 #include <drivers/auth/auth_util.h>
10 
11 static const char *current_pk_oid;
12 
13 const char *get_current_pk_oid(void)
14 {
15 	return current_pk_oid;
16 }
17 
18 void set_current_pk_oid(const char *pk_oid)
19 {
20 	current_pk_oid = pk_oid;
21 }
22