0x1 - How AWS SIGv4 and SIGv4A work

Поделиться
HTML-код
  • Опубликовано: 31 июл 2024
  • A deep dive into how web requests are signed and authenticated for Amazon Web Services

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

  • @AlexLi-zige
    @AlexLi-zige Год назад

    one of the best video explaining sigv4(a)!

  • @Amapramaadhy
    @Amapramaadhy Год назад +5

    tldw: you send your `id` along with fancy `hash(key_for_that_id)`. AWS can then look up their stored copy of `key_for_that_id` and calculate hash(key_for_that_id) on their end. As long as the two hashes match, all is well.
    [Fancy here means they also take region, service name, date, url into account etc]

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

    Nice lecture! Could you please add all the videos to a series tutorial playlist? Thanks!

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

    Currently curl 7.75+ supports Sigv4. It would help drive adoption of Sigv4a if curl supports it.

  • @DF-ss5ep
    @DF-ss5ep 3 месяца назад

    These sub keys (hashes) are generated when a secret access key is requested and propagated to services at that time, right? The way it was explained made it sound like there was some batch job generating keys every day

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

    I created a lambda with a function URL. is there a straightforward example for making a call to this URL with fetch, or jquery ajax, etc. ? ( or even axios within react )

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

    how to do that with laravel , or php through sdk? there’s no clear ref?

  • @DF-ss5ep
    @DF-ss5ep 3 месяца назад

    The red phone is for calling Jeff Bezos when quantum computers break RSA.

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

    Could you link the tweet/docs you are mentioning at 39:09 please?

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

    So, why didn't you just remove region information from the hmac hash to make token work across regions?
    It must have been very expensive to optimize performance for public/private key encryption considering AWS scale

    • @programming.jesus1234
      @programming.jesus1234 Год назад

      Because that isn’t allowed, it is not hard to gen another sig for another region

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

    Is that red phone behind just for decoration? :)

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

      It's how I leave the matrix. It's a working phone!

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

      @@ShuffleSharding 😮

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

    something funny about discussing cutting edge security tech and relying on holding up sheets of paper to the camera 🤣🤣

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

    better if you explain with diagram (visualization method), not easy to follow and had to stop watching and look for another resource