How to Encode Password in Selenium using Java || Password Encryption in Java

Поділитися
Вставка
  • Опубліковано 22 жов 2024

КОМЕНТАРІ • 20

  • @anupkapale7953
    @anupkapale7953 5 років тому +3

    Thanks for this videos & making us life more easy, really appreciated. Looking forward such an amazing videos.
    And Happy new Year!!

  • @brycegriner6099
    @brycegriner6099 2 роки тому +5

    Thanks for the video.
    I'm wondering how useful it will be, though. If the password is test123, that's not going to be a problem, but if it is a real password, then simply base64 encoding it isn't going to help much. Any other developer can simply take that base64 encoded string and decode it themselves to find the real password. Yes, it is introducing a layer of complexity so that at least you aren't storing a cleartext password in your repo, but it is only slightly better.
    Thoughts?

    • @anarfara
      @anarfara 2 роки тому

      good comment.

    • @bihari1422
      @bihari1422 2 роки тому

      Yup same thing came into my mind also but u belive its only for non technical person or for business who just demands to see your code and its just acting same as mentioned by you !!

    • @Duckeydoo701
      @Duckeydoo701 2 роки тому

      Yup this is so stupid solution.. they are encoding it, and have a decoding function again in their code.. any other developer can simply put a line of code to print the original password text after the decode function, and get your password..
      You must have an external MD5, or SHA asymmetric encryption to ensure 100% security..

    • @WorkSmarter__
      @WorkSmarter__ 7 місяців тому

      Hashicorp vault maybe solution but it's not free

  • @amarnathdr1315
    @amarnathdr1315 3 роки тому +1

    Thanks for sharing the knowledge Pavan :) Really helpful!!

  • @igorbarbosa2553
    @igorbarbosa2553 3 роки тому +1

    Thanks for sharing

  • @dhruvendrayadav7365
    @dhruvendrayadav7365 5 років тому

    Good evening sir i passed diploma with electronincs engineering and persuing b.tech with E.C. can i learn testing course .
    I have knowledge of c and c++
    Sir please help me

  • @subhashpatil4286
    @subhashpatil4286 4 роки тому

    Awesome as always. Thank you sir

  • @rentalamounika3322
    @rentalamounika3322 4 роки тому

    How to encode password using selenium python? Please help me it's kind of urgent task I have to submit in the office today.

  • @udayarajangauthaman6921
    @udayarajangauthaman6921 Рік тому

    Not able to understand usefulness of encoding and decoding.Sending test123 and decoding and encoding and sending will also send test123 .Am I missing something.How it is different.

  • @sharfuddin.ahamed
    @sharfuddin.ahamed 4 роки тому

    encodeBase64() not supported in Selenium 3.141.59

    • @gaganjain806
      @gaganjain806 4 роки тому

      just download the jar files externally and import them. It will work.

    • @Disha_direction7332
      @Disha_direction7332 4 роки тому

      @@gaganjain806 can u please send jar file link

  • @sanjibsarkar9565
    @sanjibsarkar9565 Рік тому

    Sorry to Say but misleading thumbnails🙂. It is just encoding. But not proper encryption. if possible please share the proper encryption strategy in a selenium framework