diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-08-02 17:55:46 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-08-02 17:55:46 +0000 |
commit | 26a22a753462573077d2a8072fd2eb822a288d7d (patch) | |
tree | a8eebf3985fc57a53109ad8d6359ff010ac88158 /protocols/SkypeWeb/src/skype_db.h | |
parent | 904cc94d119a5b7952cffe35e9023035a7a0c21c (diff) |
SkypeWeb: pass_ptr - smart pointer for passwords
git-svn-id: http://svn.miranda-ng.org/main/trunk@14821 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/skype_db.h')
-rw-r--r-- | protocols/SkypeWeb/src/skype_db.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/protocols/SkypeWeb/src/skype_db.h b/protocols/SkypeWeb/src/skype_db.h index 48a8a86185..f4ea89184b 100644 --- a/protocols/SkypeWeb/src/skype_db.h +++ b/protocols/SkypeWeb/src/skype_db.h @@ -33,4 +33,20 @@ enum SKYPE_DB_EVENT_TYPE #define SKYPE_SETTINGS_PASSWORD "Password"
#define SKYPE_SETTINGS_GROUP "DefaultGroup"
+class pass_ptr
+{
+ char* data;
+
+public:
+ __inline explicit pass_ptr() : data(NULL) {}
+ __inline explicit pass_ptr(char* _p) : data(_p) {}
+ __inline ~pass_ptr() { zero(); mir_free(data); }
+ __inline char* operator = (char * _p) { if (data){ zero(); mir_free(data); } data = _p; return data; }
+ __inline char* operator->() const { return data; }
+ __inline operator char *() const { return data; }
+ __inline operator INT_PTR() const { return (INT_PTR)data; }
+ __inline char * detach() { char *res = data; data = NULL; return res; }
+ __inline void zero(){ if (data) SecureZeroMemory(data, mir_strlen(data)); }
+};
+
#endif //_SKYPE_DB_H_
\ No newline at end of file |