C# Tutorial - How to encrypt a password C#.NET | FoxLearn

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 ธ.ค. 2024

ความคิดเห็น • 37

  • @bradyward5741
    @bradyward5741 6 ปีที่แล้ว +1

    Thank you for the tutorial!

    • @foxlearn
      @foxlearn  6 ปีที่แล้ว

      You're welcome & Thank you :)

  • @raziahmad2376
    @raziahmad2376 4 ปีที่แล้ว

    Great 👍👍👍

  • @ducnguyen-kz7bk
    @ducnguyen-kz7bk 5 ปีที่แล้ว

    Thank you for making this video!

  • @moedaturk
    @moedaturk 9 ปีที่แล้ว +1

    Nice!
    Can a tool be created to decrypt that password?
    Thanks

    • @gregoryfenn1462
      @gregoryfenn1462 6 ปีที่แล้ว +1

      moedaturk you neither encrypt nor decrypt a password. You hash it, and you can’t (easily) undo a hash.

    • @vexxy9879
      @vexxy9879 4 ปีที่แล้ว

      @@gregoryfenn1462 yeah you can, and if the password is easy, you can crack it under 2 hours

    • @Babaelow
      @Babaelow ปีที่แล้ว

      @@gregoryfenn1462 You need to decrypt it, however, if you're creating some sort of passwordmanager.

  • @ibrahimaliabbasi5188
    @ibrahimaliabbasi5188 5 ปีที่แล้ว

    Speechless!

    • @foxlearn
      @foxlearn  5 ปีที่แล้ว

      thank you !

  • @umanleok22a
    @umanleok22a 5 ปีที่แล้ว +1

    How to make the form's text come in between you?

    • @foxlearn
      @foxlearn  5 ปีที่แล้ว

      Can you describe more details. thank you !

  • @callsign.jester
    @callsign.jester 6 ปีที่แล้ว

    nice, it works!

    • @foxlearn
      @foxlearn  6 ปีที่แล้ว

      Great. Thank you !

  • @d3zar
    @d3zar 8 ปีที่แล้ว

    that is good. But now ehat can we decrypt it ?

    • @foxlearn
      @foxlearn  8 ปีที่แล้ว +1

      Hi, You can't decrypt md5 but you can view th-cam.com/video/Lu4ZT9oKwTw/w-d-xo.html to know how to encrypt & decrypt a string or password. thanks

  • @Tornnaz
    @Tornnaz 8 ปีที่แล้ว +1

    sha256?

    • @foxlearn
      @foxlearn  8 ปีที่แล้ว

      OK. Thank you for your suggestion

  • @Madsycode
    @Madsycode 4 ปีที่แล้ว

    thx

  • @DavidHays205
    @DavidHays205 8 ปีที่แล้ว

    Can this be decrypted?

    • @foxlearn
      @foxlearn  8 ปีที่แล้ว +1

      Hi. Yes. You can encrypt or decrypt. I'll make the tutorial as soon as possible. Thanks

    • @olive1782000
      @olive1782000 4 ปีที่แล้ว

      Md5() is One Way Function
      Mean you can Encrypt Something But After that you can not decrypt it :). thats y its most secure .suppose you want to
      Encrypt password information then By using MD5 You can encrypt Password and Store it in Database like Encrypted
      String like for example (DFGDFdFDGDFGDFGDFGDFGDFBCVB) now when user login user entereds its password in
      Simple Text and Software Again Convert User Entered SimpleText To (DFGDFdFDGDFGDFGDFGDFGDFBCVB) and then
      Encrypted String in Database and encrypted String of User entered Password are Matched if they are Same User is
      allowed :) is this way MD5 is used :)

  • @thedarknesswu7313
    @thedarknesswu7313 4 ปีที่แล้ว

    Is your voice ?

  • @zerosandones7547
    @zerosandones7547 5 ปีที่แล้ว

    how to decrypt this?

    • @foxlearn
      @foxlearn  5 ปีที่แล้ว

      OK. Thank you for your suggestion. I'll upload soon !

    • @zerosandones7547
      @zerosandones7547 5 ปีที่แล้ว

      @@foxlearn Thank you so much :D

    • @zerosandones7547
      @zerosandones7547 5 ปีที่แล้ว

      keep up the good work! Love this channel, so helpful :D

    • @nazarenesect5931
      @nazarenesect5931 4 ปีที่แล้ว +1

      In theory, hash algorithms are one-way and not subject to decryption. How hash algorithms become vulnerable is by what is called collisions using collision attacks. For example, if someone figured out your password and for the sake of this example your password was "password". The MD5 cryptographic hashing algorithm will always have the result; 5f4dcc3b5aa765d61d8327deb882cf99. So, the object here would be to use a dictionary attack to guess your password, use brute force or simply compare this hash to any hash in the database.
      Encryption on the other hand (PKI) involves a private and public key like OpenPGP. The public key is just that, public and anyone can have it, use it but without the private key. No one can decrypt the information that the public key encrypted. The output is always different.
      To find out more you can simply do a Google search for MD5 and SHA1 collision vulnerabilities and OpenPGP.
      Hope this helps.

  • @gregoryfenn1462
    @gregoryfenn1462 6 ปีที่แล้ว +7

    YOU DON’T ENCRYPT PASSWORDS. For the billionth time, you HASH a password, preferably with a 256-bit random salt. Encryption uses a secret key to encrypt and decrypt a message, hashing uses no keys and can’t be reversed- they are totally different things.

    • @789blablajaja
      @789blablajaja 5 ปีที่แล้ว

      They hash in this tutorial, but there are certainly situations you want to encrypt.
      Right now Im developing a system tray application that should have next to no user interaction.
      That means I need to save the credentials to get a new token from my api from time to time.
      Hashing makes no sense, since I need to actually send the credentials.

  • @raniel6850
    @raniel6850 4 ปีที่แล้ว +1

    Who came here because they forgot their password?