2016-05-28 23:13:44 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/secretstore.h
|
|
|
|
// Purpose: Storing and retrieving secrets using OS-provided facilities.
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Created: 2016-05-27
|
|
|
|
// Copyright: (c) 2016 Vadim Zeitlin <vadim@wxwidgets.org>
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_SECRETSTORE_H_
|
|
|
|
#define _WX_SECRETSTORE_H_
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
#if wxUSE_SECRETSTORE
|
|
|
|
|
2016-06-04 17:19:15 +00:00
|
|
|
#include "wx/string.h"
|
|
|
|
|
Change wxSecretStore API to allow retrieving the username
The old API didn't make any sense for the most common case when both the
user name and password need to be stored, as it required providing the
user name as input, which couldn't work (but somehow this went
unnoticed for more than a year...).
Fix this by returning the username, and not only the password, from
Load() instead of taking it as parameter and removing this parameter
from Delete() as well.
Also improve the documentation, notably include a simple example of
using this class.
Notice that this is a backwards-incompatible change, but the old API was
really badly broken and didn't appear in 3.1.0 yet, so the breakage is
both unavoidable and, hopefully, shouldn't affect much code.
Nevertheless, a special wxHAS_SECRETSTORE_LOAD_USERNAME symbol is added
to allow testing for it if necessary.
2017-07-16 21:47:15 +00:00
|
|
|
// Initial version of wxSecretStore required passing user name to Load(), which
|
|
|
|
// didn't make much sense without support for multiple usernames per service,
|
|
|
|
// so the API was changed to load the username too. Test for this symbol to
|
|
|
|
// distinguish between the old and the new API, it wasn't defined before the
|
|
|
|
// API change.
|
|
|
|
#define wxHAS_SECRETSTORE_LOAD_USERNAME
|
|
|
|
|
2016-05-28 23:13:44 +00:00
|
|
|
class wxSecretStoreImpl;
|
|
|
|
class wxSecretValueImpl;
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Represents a secret value, e.g. a password string.
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// This is an immutable value-like class which tries to ensure that the secret
|
|
|
|
// value will be wiped out from memory once it's not needed any more.
|
|
|
|
class WXDLLIMPEXP_BASE wxSecretValue
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// Creates an empty secret value (not the same as an empty password).
|
|
|
|
wxSecretValue() : m_impl(NULL) { }
|
|
|
|
|
|
|
|
// Creates a secret value from the given data.
|
2016-06-04 16:46:23 +00:00
|
|
|
wxSecretValue(size_t size, const void *data)
|
|
|
|
: m_impl(NewImpl(size, data))
|
|
|
|
{
|
|
|
|
}
|
2016-05-28 23:13:44 +00:00
|
|
|
|
2016-06-04 17:19:15 +00:00
|
|
|
// Creates a secret value from string.
|
|
|
|
explicit wxSecretValue(const wxString& secret)
|
|
|
|
{
|
|
|
|
const wxScopedCharBuffer buf(secret.utf8_str());
|
|
|
|
m_impl = NewImpl(buf.length(), buf.data());
|
|
|
|
}
|
|
|
|
|
2016-05-28 23:13:44 +00:00
|
|
|
wxSecretValue(const wxSecretValue& other);
|
|
|
|
wxSecretValue& operator=(const wxSecretValue& other);
|
|
|
|
|
|
|
|
~wxSecretValue();
|
|
|
|
|
|
|
|
// Check if a secret is not empty.
|
|
|
|
bool IsOk() const { return m_impl != NULL; }
|
|
|
|
|
|
|
|
// Compare with another secret.
|
|
|
|
bool operator==(const wxSecretValue& other) const;
|
|
|
|
bool operator!=(const wxSecretValue& other) const
|
|
|
|
{
|
|
|
|
return !(*this == other);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the size, in bytes, of the secret data.
|
|
|
|
size_t GetSize() const;
|
|
|
|
|
|
|
|
// Get read-only access to the secret data.
|
|
|
|
//
|
|
|
|
// Don't assume it is NUL-terminated, use GetSize() instead.
|
|
|
|
const void *GetData() const;
|
|
|
|
|
2016-06-04 17:19:15 +00:00
|
|
|
// Get the secret data as a string.
|
|
|
|
//
|
|
|
|
// Notice that you may want to overwrite the string contents after using it
|
|
|
|
// by calling WipeString().
|
|
|
|
wxString GetAsString(const wxMBConv& conv = wxConvWhateverWorks) const;
|
|
|
|
|
2016-05-28 23:13:44 +00:00
|
|
|
// Erase the given area of memory overwriting its presumably sensitive
|
|
|
|
// content.
|
|
|
|
static void Wipe(size_t size, void *data);
|
|
|
|
|
2016-06-04 17:19:15 +00:00
|
|
|
// Overwrite the contents of the given wxString.
|
|
|
|
static void WipeString(wxString& str);
|
|
|
|
|
2016-05-28 23:13:44 +00:00
|
|
|
private:
|
2016-06-04 16:46:23 +00:00
|
|
|
// This method is implemented in platform-specific code and must return a
|
|
|
|
// new heap-allocated object initialized with the given data.
|
|
|
|
static wxSecretValueImpl* NewImpl(size_t size, const void *data);
|
|
|
|
|
2016-05-28 23:13:44 +00:00
|
|
|
// This ctor is only used by wxSecretStore and takes ownership of the
|
|
|
|
// provided existing impl pointer.
|
|
|
|
explicit wxSecretValue(wxSecretValueImpl* impl) : m_impl(impl) { }
|
|
|
|
|
|
|
|
wxSecretValueImpl* m_impl;
|
|
|
|
|
|
|
|
friend class wxSecretStore;
|
|
|
|
};
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// A collection of secrets, sometimes called a key chain.
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLIMPEXP_BASE wxSecretStore
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// Returns the default secrets collection to use.
|
|
|
|
//
|
|
|
|
// Currently this is the only way to create a secret store object. In the
|
|
|
|
// future we could add more factory functions to e.g. create non-persistent
|
|
|
|
// stores or allow creating stores corresponding to the native facilities
|
|
|
|
// being used (e.g. specify schema name under Linux or a SecKeychainRef
|
|
|
|
// under OS X).
|
|
|
|
static wxSecretStore GetDefault();
|
|
|
|
|
|
|
|
// This class has no default ctor, use GetDefault() instead.
|
|
|
|
|
|
|
|
// But it can be copied, a copy refers to the same store as the original.
|
|
|
|
wxSecretStore(const wxSecretStore& store);
|
|
|
|
|
|
|
|
// Dtor is not virtual, this class is not supposed to be derived from.
|
|
|
|
~wxSecretStore();
|
|
|
|
|
|
|
|
|
2020-02-10 17:23:59 +00:00
|
|
|
// Check if this object is valid, i.e. can be used, and optionally fill in
|
|
|
|
// the provided error message string if it isn't.
|
|
|
|
bool IsOk(wxString* errmsg = NULL) const;
|
2016-05-28 23:13:44 +00:00
|
|
|
|
|
|
|
|
Change wxSecretStore API to allow retrieving the username
The old API didn't make any sense for the most common case when both the
user name and password need to be stored, as it required providing the
user name as input, which couldn't work (but somehow this went
unnoticed for more than a year...).
Fix this by returning the username, and not only the password, from
Load() instead of taking it as parameter and removing this parameter
from Delete() as well.
Also improve the documentation, notably include a simple example of
using this class.
Notice that this is a backwards-incompatible change, but the old API was
really badly broken and didn't appear in 3.1.0 yet, so the breakage is
both unavoidable and, hopefully, shouldn't affect much code.
Nevertheless, a special wxHAS_SECRETSTORE_LOAD_USERNAME symbol is added
to allow testing for it if necessary.
2017-07-16 21:47:15 +00:00
|
|
|
// Store a username/password combination.
|
2016-05-28 23:13:44 +00:00
|
|
|
//
|
|
|
|
// The service name should be user readable and unique.
|
|
|
|
//
|
Change wxSecretStore API to allow retrieving the username
The old API didn't make any sense for the most common case when both the
user name and password need to be stored, as it required providing the
user name as input, which couldn't work (but somehow this went
unnoticed for more than a year...).
Fix this by returning the username, and not only the password, from
Load() instead of taking it as parameter and removing this parameter
from Delete() as well.
Also improve the documentation, notably include a simple example of
using this class.
Notice that this is a backwards-incompatible change, but the old API was
really badly broken and didn't appear in 3.1.0 yet, so the breakage is
both unavoidable and, hopefully, shouldn't affect much code.
Nevertheless, a special wxHAS_SECRETSTORE_LOAD_USERNAME symbol is added
to allow testing for it if necessary.
2017-07-16 21:47:15 +00:00
|
|
|
// If a secret with the same service name already exists, it will be
|
|
|
|
// overwritten with the new value.
|
2016-05-28 23:13:44 +00:00
|
|
|
//
|
|
|
|
// Returns false after logging an error message if an error occurs,
|
|
|
|
// otherwise returns true indicating that the secret has been stored.
|
|
|
|
bool Save(const wxString& service,
|
Change wxSecretStore API to allow retrieving the username
The old API didn't make any sense for the most common case when both the
user name and password need to be stored, as it required providing the
user name as input, which couldn't work (but somehow this went
unnoticed for more than a year...).
Fix this by returning the username, and not only the password, from
Load() instead of taking it as parameter and removing this parameter
from Delete() as well.
Also improve the documentation, notably include a simple example of
using this class.
Notice that this is a backwards-incompatible change, but the old API was
really badly broken and didn't appear in 3.1.0 yet, so the breakage is
both unavoidable and, hopefully, shouldn't affect much code.
Nevertheless, a special wxHAS_SECRETSTORE_LOAD_USERNAME symbol is added
to allow testing for it if necessary.
2017-07-16 21:47:15 +00:00
|
|
|
const wxString& username,
|
|
|
|
const wxSecretValue& password);
|
2016-05-28 23:13:44 +00:00
|
|
|
|
Change wxSecretStore API to allow retrieving the username
The old API didn't make any sense for the most common case when both the
user name and password need to be stored, as it required providing the
user name as input, which couldn't work (but somehow this went
unnoticed for more than a year...).
Fix this by returning the username, and not only the password, from
Load() instead of taking it as parameter and removing this parameter
from Delete() as well.
Also improve the documentation, notably include a simple example of
using this class.
Notice that this is a backwards-incompatible change, but the old API was
really badly broken and didn't appear in 3.1.0 yet, so the breakage is
both unavoidable and, hopefully, shouldn't affect much code.
Nevertheless, a special wxHAS_SECRETSTORE_LOAD_USERNAME symbol is added
to allow testing for it if necessary.
2017-07-16 21:47:15 +00:00
|
|
|
// Look up the username/password for the given service.
|
2016-05-28 23:13:44 +00:00
|
|
|
//
|
Change wxSecretStore API to allow retrieving the username
The old API didn't make any sense for the most common case when both the
user name and password need to be stored, as it required providing the
user name as input, which couldn't work (but somehow this went
unnoticed for more than a year...).
Fix this by returning the username, and not only the password, from
Load() instead of taking it as parameter and removing this parameter
from Delete() as well.
Also improve the documentation, notably include a simple example of
using this class.
Notice that this is a backwards-incompatible change, but the old API was
really badly broken and didn't appear in 3.1.0 yet, so the breakage is
both unavoidable and, hopefully, shouldn't affect much code.
Nevertheless, a special wxHAS_SECRETSTORE_LOAD_USERNAME symbol is added
to allow testing for it if necessary.
2017-07-16 21:47:15 +00:00
|
|
|
// If no username/password is found for the given service, false is
|
|
|
|
// returned.
|
2016-05-28 23:13:44 +00:00
|
|
|
//
|
Change wxSecretStore API to allow retrieving the username
The old API didn't make any sense for the most common case when both the
user name and password need to be stored, as it required providing the
user name as input, which couldn't work (but somehow this went
unnoticed for more than a year...).
Fix this by returning the username, and not only the password, from
Load() instead of taking it as parameter and removing this parameter
from Delete() as well.
Also improve the documentation, notably include a simple example of
using this class.
Notice that this is a backwards-incompatible change, but the old API was
really badly broken and didn't appear in 3.1.0 yet, so the breakage is
both unavoidable and, hopefully, shouldn't affect much code.
Nevertheless, a special wxHAS_SECRETSTORE_LOAD_USERNAME symbol is added
to allow testing for it if necessary.
2017-07-16 21:47:15 +00:00
|
|
|
// Otherwise the function returns true and updates the provided user name
|
|
|
|
// and password arguments.
|
|
|
|
bool Load(const wxString& service,
|
|
|
|
wxString& username,
|
|
|
|
wxSecretValue& password) const;
|
|
|
|
|
|
|
|
// Delete a previously stored username/password combination.
|
2016-05-28 23:13:44 +00:00
|
|
|
//
|
Change wxSecretStore API to allow retrieving the username
The old API didn't make any sense for the most common case when both the
user name and password need to be stored, as it required providing the
user name as input, which couldn't work (but somehow this went
unnoticed for more than a year...).
Fix this by returning the username, and not only the password, from
Load() instead of taking it as parameter and removing this parameter
from Delete() as well.
Also improve the documentation, notably include a simple example of
using this class.
Notice that this is a backwards-incompatible change, but the old API was
really badly broken and didn't appear in 3.1.0 yet, so the breakage is
both unavoidable and, hopefully, shouldn't affect much code.
Nevertheless, a special wxHAS_SECRETSTORE_LOAD_USERNAME symbol is added
to allow testing for it if necessary.
2017-07-16 21:47:15 +00:00
|
|
|
// If anything was deleted, returns true. Otherwise returns false and
|
|
|
|
// logs an error if any error other than not finding any matches occurred.
|
|
|
|
bool Delete(const wxString& service);
|
2016-05-28 23:13:44 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
// Ctor takes ownership of the passed pointer.
|
|
|
|
explicit wxSecretStore(wxSecretStoreImpl* impl) : m_impl(impl) { }
|
|
|
|
|
|
|
|
wxSecretStoreImpl* const m_impl;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // wxUSE_SECRETSTORE
|
|
|
|
|
|
|
|
#endif // _WX_SECRETSTORE_H_
|