Merhaba forum sakinleri benim arkadaşımla geliştirdiğim bir projem var ve bu projede bir sorun ile karşılaştım.
Sorun şu: c# bir proje ve bu proje websitesinden şifre verisini BCrypt olarak çekiyor ama ben bunu SHA-512 olarak çekmesini istiyorum
Örnek şifre şu: $SHA$B5UjjrhJBcz5ii9P$6cce66749fd297b422fe1c13a550 d654426992626e8dd326d989d8d4d74efa76 (123456789a)

                        string hashedPassword = reader.GetString("password");

                        // Check if the entered password matches the hashed password
                        if (BCrypt.Net.BCrypt.Verify(password, hashedPassword))
                        {

                            // Write the user's information to the User class
                            User.Id = id;
                            User.Username = _username;
                            User.Rank = rank;
                            User.Credit = Credit;
                            Save_Data();
                            MainMenu mm = new MainMenu();
                            mm.Show();
                            Hide();
                        }