d2dyno
d2dyno
There are probably UI tools available that'd help automate the copying and pasting process, though I'm not aware of any. However, if you're familiar with coding, [this](https://github.com/securefolderfs-community/SecureFolderFS/blob/master/SecureFolderFS.Core/Routines/UnlockRoutines/UnlockRoutine.cs#L107-L120) is the place...
This is roughly the process that SFFS uses: ``` keystore = ReadDataFromFile("keystore.cfg"); kek = Argon2id.Derive(pass: password, salt: keystore.salt); encKey = Rfc3394.Unwrap(key: kek, wrapped: keystore.c_encryptionKey); macKey = Rfc3394.Unwrap(key: kek, wrapped: keystore.c_macKey);...
Do you have .NET 7.0 runtime installed? Or alternatively, you can try clearing nuget cache or clear the file found in `%appdata%\NuGet\NuGet.Config`
Did you clone recursively? Verify that folders inside the `lib` folder are not empty. But if you can't find the problem, I can send you pre-built binaries if you want...
Sure! @uuc110 [SecureFolderFS-bruteforce.zip](https://github.com/securefolderfs-community/SecureFolderFS/files/12445305/SecureFolderFS-bruteforce.zip)
I don't have any 'nonces' nor are there any backdoors to avoid the encryption
This also appears to apply to the ToolbarItems icon (notice that the back button is also white) 
The only idea I could think of would be to use a FileSystemWatcher to detect file changes, although it'd be also possible to use a NamedPipe (which I think could...
Sure I can work on this. (I also hope to introduce my 3rd gen settings serialization :eyes:)
I've put this feature on hold for now (it's not as easy to implement as I originally anticipated)