/* libsecret - GLib wrapper for Secret Service * * Copyright 2012 Stef Walter * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2.1 of the licence or (at * your option) any later version. * * See the included COPYING file for more information. * * Author: Stef Walter */ #include "config.h" #include "secret-schema.h" /** * SECRET_SCHEMA_NOTE: * * A predefined schema for personal passwords stored by the user in the * password manager. This schema has no attributes, and the items are not * meant to be used automatically by applications. */ static const SecretSchema note_schema = { "org.gnome.keyring.Note", SECRET_SCHEMA_DONT_MATCH_NAME, { { "NULL", 0 }, } }; const SecretSchema * SECRET_SCHEMA_NOTE = ¬e_schema; /** * SECRET_SCHEMA_COMPAT_NETWORK: * * A predefined schema that is compatible with items stored via the * libgnome-keyring 'network password' functions. This is meant to be used by * applications migrating from libgnome-keyring which stored their secrets as * 'network passwords'. It is not recommended that new code use this schema. * * The following attributes exist in the schema: * Attributes: * user: * The user name (string). * domain: * The login domain or realm (string). * object: * The object or path (string). * protocol: * The protocol (a string like 'http'). * port: * The network port (integer). * server: * The hostname or server (string). * authtype: * The authentication type (string). * */ static const SecretSchema network_schema = { "org.gnome.keyring.NetworkPassword", SECRET_SCHEMA_DONT_MATCH_NAME, { { "user", SECRET_SCHEMA_ATTRIBUTE_STRING }, { "domain", SECRET_SCHEMA_ATTRIBUTE_STRING }, { "object", SECRET_SCHEMA_ATTRIBUTE_STRING }, { "protocol", SECRET_SCHEMA_ATTRIBUTE_STRING }, { "port", SECRET_SCHEMA_ATTRIBUTE_INTEGER }, { "server", SECRET_SCHEMA_ATTRIBUTE_STRING }, { "authtype", SECRET_SCHEMA_ATTRIBUTE_STRING }, { "NULL", 0 }, } }; const SecretSchema * SECRET_SCHEMA_COMPAT_NETWORK = &network_schema;