public void ValidateProtectedData(string location, Key keyFile)
 {
     var keyContents = _fileHandler.Read(location, keyFile);
     var KeyBytes    = ProtectedData.Unprotect(keyContents,
                                               null, DataProtectionScope.CurrentUser);
 }