Remove guarantee about converting NONE

Signed-off-by: Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>
diff --git a/library/md_psa.h b/library/md_psa.h
index 2f6c701..20da5c2 100644
--- a/library/md_psa.h
+++ b/library/md_psa.h
@@ -31,7 +31,10 @@
  * \brief           This function returns the PSA algorithm identifier
  *                  associated with the given digest type.
  *
- * \param md_type   The type of digest to search for.
+ * \param md_type   The type of digest to search for. Must not be NONE.
+ *
+ * \warning         If \p md_type is \c MBEDTLS_MD_NONE, this function will
+ *                  not return \c PSA_ALG_NONE, but an invalid algorithm.
  *
  * \warning         This function does not check if the algorithm is
  *                  supported, it always returns the corresponding identifier.