Discrete Logarithm -Finding Primitive Roots - Cryptography - CSE4003

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

КОМЕНТАРІ • 20

  • @boyinamallika3592
    @boyinamallika3592 3 роки тому +12

    Worth spending my time watching this really good sir

  • @husamalardah890
    @husamalardah890 3 роки тому +3

    Really nice explanation , only video out there properly explaining discrete logarithms for primitive roots. Good stuff.

  • @jeevarukesh5023
    @jeevarukesh5023 Рік тому +3

    excellent teaching and explanation😇

    • @SatishCJ
      @SatishCJ  Рік тому +1

      Glad you liked it. Thanks for the nice feedback.

  • @KaatibAcademy
    @KaatibAcademy Рік тому +4

    Thank you very much, I liked the way you explained the primitive root, I should thank you.

  • @utsavseth7116
    @utsavseth7116 Рік тому +1

    great lecture. Very well explained

  • @sathviksrikanth7362
    @sathviksrikanth7362 Рік тому +2

    Thanks a lot sir!!!

  • @naodtesfalem6758
    @naodtesfalem6758 Рік тому +1

    Great explanation clap 👏

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

      Thanks for the nice feedback

  • @HarpreetSingh-kr5yu
    @HarpreetSingh-kr5yu 4 роки тому +2

    Excellent explanation sir

  • @nitikamahtolia
    @nitikamahtolia 3 роки тому +2

    Thankyou sir very well explained!

  • @AB-np6qu
    @AB-np6qu 4 роки тому +2

    Thank you so much 👍

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

    isn't there any other method for getting i other than trial and error method?

  • @mauryasharma4530
    @mauryasharma4530 2 роки тому +1

    Yes 5 is a primitive root of 7.

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

    Please also add elliptical curve cryptography concepts

    • @SatishCJ
      @SatishCJ  2 роки тому +2

      Hello Pavan.. the concepts on elliptic curve cryptography is also added . Kindly check the playlist

  • @codywohlers2059
    @codywohlers2059 9 місяців тому

    why does discrete log always use mod and regular log does not?

  • @learnandroiddev2927
    @learnandroiddev2927 6 місяців тому

    5 is a primitive root of mod 7
    You can try verifying with this python code
    # check if 5 is a primitive root of mod 7
    num = 5
    mod = 7
    results = []
    for i in range(1, mod):
    result = (num**i) % mod
    if result in results:
    print(f'{num} is a NOT primitive root')
    break
    results.append(result)
    if i == mod - 1:
    print(f'{results} == {num} is a primitive root')