Fixed issue #3782: Stash window may operate on unwanted stash under some circumstance...
[TortoiseGit.git] / src / Utils / WindowsCredentialsStore.h
blob1ee3b27d527d9bdc4e1a2e085b6886a7c085d565
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2016, 2018-2020 - TortoiseGit
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software Foundation,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #pragma once
22 class CCredentials;
24 class CWindowsCredentialsStore {
25 private:
26 CWindowsCredentialsStore() = delete;
28 public:
29 static int GetCredential(const CString& entryName, CCredentials& credentials);
30 static int SaveCredential(const CString& entryName, const CString& username, const wchar_t* password);
31 static int DeleteCredential(const CString& entryName);
32 static int ListCredentials(const CString& startsWith, CStringList& result);
35 class CCredentials {
36 public:
37 CCredentials();
38 ~CCredentials();
40 CString m_username;
41 wchar_t m_password[256];
43 friend class CWindowsCredentialsStore;
45 CCredentials(CCredentials&) = delete;
46 CCredentials(CCredentials&& that) = default;
47 CCredentials& operator=(const CCredentials&) = delete;