| 123 | |
| 124 | |
| 125 | void SecPassword::Set(const wchar *Psw) |
| 126 | { |
| 127 | if (*Psw==0) |
| 128 | { |
| 129 | PasswordSet=false; |
| 130 | memset(Password,0,sizeof(Password)); |
| 131 | } |
| 132 | else |
| 133 | { |
| 134 | PasswordSet=true; |
| 135 | Process(Psw,wcslen(Psw)+1,Password,ASIZE(Password),true); |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | |
| 140 | size_t SecPassword::Length() |
no outgoing calls
no test coverage detected