Provisioning a X25519 key pair in KMU

ncs\v3.4.0\nrf\scripts\generate_psa_key_attributes.py doesn't seem to support X25519 PsaKeyType and allowing it to be used with ECDH algorithm. Is this just functionality that is not just added or is there any specific reason for not allowing it ? I tried modifying the script to allow it and it gets provisioned as the cracen driver is supporting it.  I would like to know if there are any issues in doing this .

D:\ncs\v3.4.0\nrf\subsys\nrf_security\src\drivers\cracen\cracenpsa\src\cracen_psa_kmu.c.  

#ifdef PSA_NEED_CRACEN_ECDH
    case PSA_ALG_ECDH:
        if (!can_derive(key_attr) ||
            (PSA_KEY_TYPE_ECC_GET_FAMILY(psa_get_key_type(key_attr)) !=
                 PSA_ECC_FAMILY_SECP_R1 &&
             PSA_KEY_TYPE_ECC_GET_FAMILY(psa_get_key_type(key_attr)) !=
                 PSA_ECC_FAMILY_MONTGOMERY)) {
            return PSA_ERROR_NOT_SUPPORTED;
        }
        metadata->algorithm = METADATA_ALG_ECDH;
        break;
Related