Credential Manager credential type.
Synopsis:
#include <sys/credential/credential_store.h>
typedef enum {
CREDENTIAL_TYPE_ANY = 0
CREDENTIAL_TYPE_PASSWORD_CRED = 1 << 0
CREDENTIAL_TYPE_CLIENT_CERT = 1 << 1
} credential_type_t;
Data:
- CREDENTIAL_TYPE_ANY
- Reserved value that represents any credential type.
This value can only be used in credential queries.
- CREDENTIAL_TYPE_PASSWORD_CRED
- Indicates a password-based credential.
- CREDENTIAL_TYPE_CLIENT_CERT
- Indicates a certificate-based credential.
Library:
libcredential (For the qcc command, use the -l bps option to link against this library)
Description:
This enumeration defines the concrete types for stored credentials.