psa_custom_key_parameters_s struct
Custom parameters for key generation or key derivation. This is a structure type with at least the following field: - \c flags: an unsigned integer type. 0 for the default production parameters. Functions that take such a structure as input also take an associated input buffer \c custom_data of length \c custom_data_length. The interpretation of this structure and the associated \c custom_data parameter depend on the type of the created key. - #PSA_KEY_TYPE_RSA_KEY_PAIR: - \c flags: must be 0. - \c custom_data: the public exponent, in little-endian order. This must be an odd integer and must not be 1. Implementations must support 65537, should support 3 and may support other values. When not using a driver, Mbed TLS supports values up to \c INT_MAX. If this is empty, the default value 65537 is used. - Other key types: reserved for future use. \c flags must be 0.
Fields