PCA-12 Quick, GCP Professional Architect - SSL, PKI, security, encryption

แชร์
ฝัง
  • เผยแพร่เมื่อ 9 ม.ค. 2025

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

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

    I had never seen a much simpler explanation of encryptions. Thanks. One more thing, at 16.39 Bob (in yellow) should have shared his public key, and not private key, mostly.

    • @AwesomeGCP
      @AwesomeGCP  4 ปีที่แล้ว +2

      Oops, my mistake. The diagram is ok but I said it wrong. Bob should be sharing his public key.

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

    very important question and concept. good work!

  • @TradingGuide
    @TradingGuide 4 ปีที่แล้ว +2

    I love your explanations my friend, thank you.

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

    Best explanation of SSL and PKI!

  • @TatianaZ.K
    @TatianaZ.K ปีที่แล้ว

    Hello, it would be very helpful to be providing links to the docs and/or material where we would possibly learn more..
    Thank you for the awesome content!!

  • @SandeepYadav-or8pk
    @SandeepYadav-or8pk 10 หลายเดือนก่อน

    Wonderful explanation! Thanks.

  • @rsankuratri
    @rsankuratri 11 หลายเดือนก่อน

    Based on how PKI encryption works, D is definitely the wrong answer, because it is suggesting encryption using a private key - a blatantly wrong statement. I think Google made a typo here. They should have public in place of private.

  • @ovnigaz
    @ovnigaz 4 ปีที่แล้ว +3

    Hello your channel is very helpful.
    The d answer is tricky since it llok like the client side is encrypting the message with is private key which will make the message unreadable. Google cloud question should be more clear and not confusing or maybe I'm wrong

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

      In a chat, both sides are both clients and servers. So both have their own private key and public key. The question is tough, but it looks fine to me.

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

      ​@@AwesomeGCP Yes but in PKI the private key is for decryption not encryption, if you encrypt with your private key, then who can decrypt your message ? Normally you encrypt with the public key of who's the message is for.

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

      If you and I were communicating, you'd encrypt the message you send to me with my public key and I'd decrypt it with my private key. To send you a message, I encrypt it with your public key, which only you can decrypt with your private key.

    • @ur35hk
      @ur35hk 3 หลายเดือนก่อน

      @@AwesomeGCP your explanation is correct. Yes, encryption is always done with public key (on the sender side) and decryption is always done with private key (on the recipient side).
      However the option D suggesting to encrypt the message on the client side (sender side) using the originating private key.
      So, either the Option D has a typo "private" instead of public.. and if it is not a typo, then the option D would not work.
      In that case, the most probable answer would be option C.

  • @AnilLalloo
    @AnilLalloo 4 ปีที่แล้ว +2

    This one is still tripping me up, should it not be C? D seems incorrect due the fact that encryption should be through a public key, not a private key - cloud.google.com/kms/docs/asymmetric-encryption -
    "
    The sender retrieves the recipient's public key.
    The sender uses the public key to encrypt plaintext.
    The sender sends the ciphertext to the recipient.
    The recipient uses the recipient's private key to decrypt the ciphertext. The recipient can now view the plaintext.
    "

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

      In the case of C, only one of them has a private key - typically used by a client-server communication. In D, both have their own, separate private keys, which is more suitable for chat where the two participants are equal.