AES Encryption/Decryption (1) : Creating Secret Keys to encrypt a message

Поделиться
HTML-код
  • Опубликовано: 29 ноя 2024

Комментарии • 24

  • @mindlessmeat4055
    @mindlessmeat4055 Год назад +1

    This was a great tutorial. This was so much more helpful that anything else. Thank you so much. Though mine did not work. It worked as far as encryption and half way through decryption and just skipped the rest. I don't know why.

  • @alaeddinekramou2940
    @alaeddinekramou2940 2 года назад

    Machaallah . Men lavoix Rani has belik Dziri.

  • @edwinkaris9602
    @edwinkaris9602 10 месяцев назад

    very nice tuitorial

  • @vedsorathiya8378
    @vedsorathiya8378 10 месяцев назад

    How can I encrypt an image using AES?

  • @maguluribhargavchowdary4453
    @maguluribhargavchowdary4453 Год назад

    What are the dependency you have used maven or gradle

  • @realisationJourney
    @realisationJourney 3 года назад +2

    Great tutorial thanks

  • @luckywin1409
    @luckywin1409 3 года назад +2

    Great tutorial. Love your work. In your description, it still says : LOADING..., is the code still unavailable ?

    • @WhiteBatCodes
      @WhiteBatCodes  3 года назад +1

      Thank you for your feedback! I have recorded the video, but sadly I didn't find time to add it to the website. I will add the gist link to the video description if you just want to copy the code

  • @jasonbangcoyo5434
    @jasonbangcoyo5434 2 года назад

    Question im new in java and also in encryption method. Everytime I encrypt the data the response is jackson illegal character code 0, so how I fix this kind of error?

  • @minajacob4564
    @minajacob4564 3 года назад +1

    Amazing tutorial :) thanks

  • @theallrounder2823
    @theallrounder2823 2 года назад +1

    If i have 2 systems upstream and downstream ,then how can the key generated in the upstream be notified to the down stream to decrypt? Is it possible? Or can we generate a key of our own logic which is known to both upstream and downstream?

    • @azim1879
      @azim1879 10 месяцев назад

      I'm a student taking IB cs and having the same problem on my IA project. Did you find your way out for this problem? If you did can you tell me how you solved the problem?

  • @farahalyousuf3504
    @farahalyousuf3504 2 года назад

    What if I was using CBC? not GCM.

  • @asrorrakhmatov7610
    @asrorrakhmatov7610 2 года назад

    Very useful :) thanks

  • @Aki2024.
    @Aki2024. 3 года назад

    Is wolfssl more secure than aes 256 gcm?

    • @WhiteBatCodes
      @WhiteBatCodes  3 года назад

      Those two things are quite different. The first is an library and the second is am algorithm so we can't compare between them.
      What I can tell you is that encryption is mostly used to protect sensitive data like banking details or even personal informations. But wolfssl is used to share information in an IoT network and I don't believe, yet, that this kind of data requires encryption. Unless its in an environment that's protected like someone's house.

  • @jyothsnakotaiah2337
    @jyothsnakotaiah2337 2 месяца назад

    anyone can send another code

  • @alexandersmirnov4274
    @alexandersmirnov4274 2 года назад +1

    difference btw RSA and AES ?

    • @WhiteBatCodes
      @WhiteBatCodes  2 года назад

      This URL will help you understand the difference and how they can be used together.
      www.precisely.com/blog/data-security/aes-vs-rsa-encryption-differences

  • @abdobassel7738
    @abdobassel7738 Год назад

    yes

  • @denizbas3813
    @denizbas3813 2 года назад

    I encrpted a string firstly, then I stop the app and I put the string that I encrypted before inside the project , like a constant variable and as a encretped version, then when I tried the decrypted the string that I put inside the project, I am getting an error which is javax.crypto.AEADBadTagException: error:1e000065:Cipher functions:OPENSSL_internal:BAD_DECRYPT. Do you have any idea about it ?

    • @WhiteBatCodes
      @WhiteBatCodes  2 года назад

      This error happens when you don't use the same key for encryption as the one for decryption.
      The same way you stored the encrypted data you need to store the encryption key.