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

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

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

  • @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 9 หลายเดือนก่อน

    very nice tuitorial

  • @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

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

    What are the dependency you have used maven or gradle

  • @vedsorathiya8378
    @vedsorathiya8378 9 หลายเดือนก่อน

    How can I encrypt an image using AES?

  • @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 9 หลายเดือนก่อน

      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?

  • @RahulSingh-kq1uw
    @RahulSingh-kq1uw 2 ปีที่แล้ว +1

    How to take key as a input like password.
    And decrypt it using the same key .

    • @annassanis
      @annassanis 2 ปีที่แล้ว

      You can use a Scanner and read it from the user input, or read it from a file

  • @farahalyousuf3504
    @farahalyousuf3504 2 ปีที่แล้ว

    What if I was using CBC? not GCM.

  • @asrorrakhmatov7610
    @asrorrakhmatov7610 2 ปีที่แล้ว

    Very useful :) thanks

  • @Aki2024.
    @Aki2024. 2 ปีที่แล้ว

    Is wolfssl more secure than aes 256 gcm?

    • @WhiteBatCodes
      @WhiteBatCodes  2 ปีที่แล้ว

      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 หลายเดือนก่อน

    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.