- Install Msys2 from msys2.org
- Complete the steps and open Msys2
- Update package databases
pacman -Syu - Update rest of base packages
pacman -Su - Install Mingw-w64
pacman -S --needed base-devel mingw-w64-x86_64-toolchain - Install CMake
pacman -S mingw-w64-x86_64-cmake - Install Ninja
pacman -S mingw-w64-x86_64-ninja - Make sure to launch
MSYS2 MinGW 64-bitwith administrator rights ( This is !mportant...!!!)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Create a Desktop folder and name it: | |
| GodMode.{ED7BA470-8E54-465E-825C-99712043E01C} | |
| A list of other commands that also create special folders: | |
| {00C6D95F-329C-409a-81D7-C46C66EA7F33} | |
| {0142e4d0-fb7a-11dc-ba4a-000ffe7ab428} | |
| {025A5937-A6BE-4686-A844-36FE4BEC8B6D} | |
| {05d7b0f4-2121-4eff-bf6b-ed3f69b894d9} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Security.Cryptography; | |
| using System.Text; | |
| namespace OpenSslCompat | |
| { | |
| /// <summary> | |
| /// Derives a key from a password using an OpenSSL-compatible version of the PBKDF1 algorithm. | |
| /// </summary> |