Describes a password schema. Often you'll want to use a predefined schema such
as %GNOME_KEYRING_NETWORK_PASSWORD.
The last attribute name in a schema must be %NULL.
GnomeKeyringPasswordSchema my_schema = {
GNOME_KEYRING_ITEM_GENERIC_SECRET,
{
{ "string-attr", GNOME_KEYRING_ATTRIBUTE_TYPE_STRING },
{ "uint-attr", GNOME_KEYRING_ATTRIBUTE_TYPE_UINT32 },
{ NULL, 0 }
}
};
Describes a password schema. Often you'll want to use a predefined schema such as %GNOME_KEYRING_NETWORK_PASSWORD.