| 905 | } |
| 906 | |
| 907 | bool |
| 908 | rt_is_reverse_config_file(CryptContext *con, LPCWSTR FileName) |
| 909 | { |
| 910 | if (!con->GetConfig()->m_reverse) |
| 911 | return false; |
| 912 | else |
| 913 | return *FileName == '\\' && !lstrcmpi(FileName + 1, REVERSE_CONFIG_NAME); |
| 914 | } |
| 915 | |
| 916 | bool |
| 917 | rt_is_dir_iv_file(CryptContext *con, LPCWSTR FileName) |
no test coverage detected