| 138 | |
| 139 | |
| 140 | size_t SecPassword::Length() |
| 141 | { |
| 142 | wchar Plain[MAXPASSWORD]; |
| 143 | Get(Plain,ASIZE(Plain)); |
| 144 | size_t Length=wcslen(Plain); |
| 145 | cleandata(Plain,ASIZE(Plain)); |
| 146 | return Length; |
| 147 | } |
| 148 | |
| 149 | |
| 150 | bool SecPassword::operator == (SecPassword &psw) |
nothing calls this directly
no test coverage detected