secure_fw: partitions: crypto: Add missing psa apis to crypto_spe.h

crypto_spe.h contains all psa apis, to help with
name-mangling of psa api function signature
implemented by Mbed Crypto.
Adding missing PSA crypto APIs.

Change-Id: I97e6cbe0b2bd1c3239d41f4f996b8e7e4944e85c
Signed-off-by: Gowri Ramshankar <Gowri.Ramshankar@analog.com>
(cherry picked from commit 6130b810beb2a5f79162a6010642ff0ede5ee76e)
diff --git a/secure_fw/partitions/crypto/crypto_spe.h b/secure_fw/partitions/crypto/crypto_spe.h
index 29b4f5d..73af8bf 100644
--- a/secure_fw/partitions/crypto/crypto_spe.h
+++ b/secure_fw/partitions/crypto/crypto_spe.h
@@ -1,5 +1,6 @@
 /*
  * SPDX-FileCopyrightText: Copyright The TrustedFirmware-M Contributors
+ * Copyright (C) 2025 Analog Devices, Inc.
  *
  * SPDX-License-Identifier: BSD-3-Clause
  *
@@ -166,5 +167,8 @@
         PSA_FUNCTION_NAME(psa_asymmetric_decrypt)
 #define psa_generate_key \
         PSA_FUNCTION_NAME(psa_generate_key)
-
+#define psa_key_derivation_verify_key \
+        PSA_FUNCTION_NAME(psa_key_derivation_verify_key)
+#define psa_key_derivation_verify_bytes \
+        PSA_FUNCTION_NAME(psa_key_derivation_verify_bytes)
 #endif /* CRYPTO_SPE_H */