Lines Matching full:version
17 * \brief Retrieve the version of the PSA Framework API.
25 uint32_t version; in tfm_get_version() local
27 version = psa_framework_version(); in tfm_get_version()
28 if (version == PSA_FRAMEWORK_VERSION) { in tfm_get_version()
29 printk("The version of the PSA Framework API is %d.\n", in tfm_get_version()
30 version); in tfm_get_version()
32 printk("The version of the PSA Framework API is not valid!\n"); in tfm_get_version()
39 * \brief Retrieve the minor version of a RoT Service.
43 uint32_t version; in tfm_get_sid() local
45 version = psa_version(TFM_CRYPTO_SID); in tfm_get_sid()
46 if (version == PSA_VERSION_NONE) { in tfm_get_sid()
52 /* Valid version number */ in tfm_get_sid()
53 printk("The PSA Crypto service minor version is %d.\n", version); in tfm_get_sid()