SS_SECRET_ID_T

Structure used to encode the Secret ID for SecretStore use.

Syntax

    typedef	 struct SS_SECRET_ID_T
    {
        long   		len; 
        char		id[NSSS_MAX_SECRET_ID_LEN]; 
    } SS_SECRET_ID_T;
    

Fields

len
Specifies the maximum length of the ID in bytes.
id
Specifies the actual ID, including the terminating char. This is the length in bytes when the id is passed in local code page. If the string is already in Unicode then the id can accommodate the unisze(id) <= NSSS_MAX_SECRET_ID_LEN.

Description

This structure can be used for encoding of Secret ID on related APIs.