CrypTool2 (cryptographic tool)

Questions about Wine on Linux
Locked
jimapplecore
Level 1
Level 1
Posts: 5
Joined: Fri Apr 17, 2020 9:59 am

CrypTool2 (cryptographic tool)

Post by jimapplecore »

CrypTool2 is an open source project concerned with cryptology.
It is based on the latest .NET Framework (currently .NET 4.7.2).
It also depends on Windows Presentation Foundation (WPF)
Has anyone managed to get it working with dotnet40 ?

I am working on altering a variety of configurations with limited success.
I was able to install dotnet40 in a 64bit prefix by switching from winxp to win7 after installation.
who wants to give it a shot?

jimapplecore

It is an amazing piece of software. Go have a look.

Website
https://www.cryptool.org/en/ct2/

Youtube Channel:
https://www.youtube.com/channel/UC8_Fqv ... cSoEJ5ob-Q
FalcoGer
Newbie
Newbie
Posts: 2
Joined: Wed Dec 22, 2021 5:26 pm

Re: CrypTool2 (cryptographic tool)

Post by FalcoGer »

I managed to get it to run.
https://www.reddit.com/r/linux4noobs/co ... with_wine/

Code: Select all

winetricks dotnet48
winetricks dxvk160
winetricks d3dcompiler_47
wine reg add "HKCU\\SOFTWARE\\Microsoft\\Avalon.Graphics" /v DisableHWAcceleration /t REG_DWORD /d 1 /f
After that it ran fine. Once it threw an error, but after it died and I restarted it, it was fine again.
Also the templates don't work right. It seems like some of the components are all over the workplace, like waaaay out.
Everything else seems to work just fine and if you placed things yourself and then saved it, it will load fine without the template issue.
FalcoGer
Newbie
Newbie
Posts: 2
Joined: Wed Dec 22, 2021 5:26 pm

Re: CrypTool2 (cryptographic tool)

Post by FalcoGer »

The templates didn't work right in wine5. I since upgraded to wine 7, and now they work. some templates use relative paths for things like dictionaries. you need to start the program in the program directory. use

Code: Select all

bash -c 'cd "/home/paul/.wine/drive_c/Program Files/CrypTool 2" && wine CrypWin.exe'
Locked