Susan Zehra
Susan Zehra
  • Видео 24
  • Просмотров 230 917

Видео

Modular Exponentiation or Power Modulo. 11^19 mod 23 (Iterative + Factoring Method)
Просмотров 15 тыс.2 года назад
Modular Exponentiation or Power Modulo. Solve11^19 mod 23 using a combination of iterative and factoring method.
(4a) Electronic Codebook (ECB) Solved Example (Step-by-Step)
Просмотров 3,5 тыс.2 года назад
Electronic Codebook (ECB) Solved Example (Step-by-Step) Final answers are: (i) B8DA, (ii) 22F8, (iii) 88C1, (iv) 88BC and (v) 0711.
Find the output of the f-function in DES algorithm, given an input and the key to the function
Просмотров 1,1 тыс.2 года назад
Consider the f-Function used in the DES algorithm. Suppose the 32-bit input is “A1B2C3D4”. Determine the 32-bit output of the function if the 48-bit key to the function is “F0D532A490C6”.
Find the period length, output cycle, and the output from a Linear Feedback Shift Register (LFSR).
Просмотров 13 тыс.2 года назад
Find the length of the period, output cycle, and the output generated from a given Linear Feedback Shift Register (LFSR) with degree = 3 and given initial values of the flip-flops.
Generate 10 random numbers from a Linear Congruent Generator (LCG), given a seed & parameter values
Просмотров 3222 года назад
Generate 10 random numbers from a Linear Congruent Generator (LCG), given a seed and parameter values.
(1a) Compute 240^262 mod 14 using the fast modular exponentiation method.
Просмотров 137 тыс.4 года назад
Compute 240^262 mod 14 using the fast modular exponentiation method.
(3d) Determine the AES S-box substitution value for BC which is in hex.
Просмотров 1,3 тыс.5 лет назад
(3d) Determine the AES S-box substitution value for BC which is in hex.
(3c) Determine the multiplicative inverse of 15hex.
Просмотров 5365 лет назад
(3c) Determine the multiplicative inverse of 15hex.
(5e) Using the private key (5, 55) where d=5 and n=55, decrypt y = 3.
Просмотров 6175 лет назад
(5e) Using the private key (5, 55) where d=5 and n=55, decrypt y = 3.
(5d) Using p = 11, q = 5, and e = 3, encrypt x = 2.
Просмотров 1,1 тыс.5 лет назад
(5d) Using p = 11, q = 5, and e = 3, encrypt x = 2.
(5c) Using RSA key generation scheme with p=11, q=5, e=3, find the public key & private key pair
Просмотров 22 тыс.5 лет назад
To learn about how to calculate multiplicative inverse, see my video ruclips.net/video/nfoc2NZdNFc/видео.html
(5b) Determine Euler's phi function Φ(100).
Просмотров 1,6 тыс.5 лет назад
(5b) Determine Euler's phi function Φ(100).
(5a) Using Euclidean algorithm, find GCD(174, 66).
Просмотров 6755 лет назад
(5a) Using Euclidean algorithm, find GCD(174, 66).
(3b) Find the PLAIN POLYNOMIAL product of 25hex and 28hex in GF(28) in hex. NO REDUCTION AT THE END.
Просмотров 4175 лет назад
Considering the Galois fields used in AES with irreducible polynomial of P(x) = x8 x4 x3 x 1, answer the following: B. Find the plain polynomial product (i.e., the result of multiplication) of 25hex and 28hex in GF(28) expressed as a hexadecimal. No need to reduce at the end if the question is specifically asking for plain polynomial. But generally you have to reduce.
(3a) Find the sum of 54 in HEX and 28 in HEX in GF(28) expressed as a hexadecimal.
Просмотров 5295 лет назад
(3a) Find the sum of 54 in HEX and 28 in HEX in GF(28) expressed as a hexadecimal.
(2c) In DES, if the 6-bit input to S-box S5 is 52 (in OCTAL), what is its output (in OCTAL)?
Просмотров 8715 лет назад
(2c) In DES, if the 6-bit input to S-box S5 is 52 (in OCTAL), what is its output (in OCTAL)?
(2a) Find 6 random numbers using linear congruential generator & seed=8: si+1 = (3 * si + 2) mod 17
Просмотров 1,7 тыс.5 лет назад
(2a) Find 6 random numbers using linear congruential generator & seed=8: si 1 = (3 * si 2) mod 17
(2b) For the LFSR si = ( si-2 + si−4 + si−6 ) mod 2, degree m=6 . Find the max sequence length.
Просмотров 7015 лет назад
(2b) For the LFSR si = ( si-2 si−4 si−6 ) mod 2, degree m=6 . Find the max sequence length.
(1c) Find the multiplicative inverse of 7 in Z20
Просмотров 4,1 тыс.5 лет назад
(1c) Find the multiplicative inverse of 7 in Z20
(1b) Compute Z*15
Просмотров 4 тыс.5 лет назад
(1b) Compute Z*15
Sophia Rizvi (3rd grade) performing live at the Coventry Elementary School Talent Show
Просмотров 8136 лет назад
Sophia Rizvi (3rd grade) performing live at the Coventry Elementary School Talent Show
Zahra Rizvi Student Council Vice-President 4th Grade Speech Virginia 2015
Просмотров 2,5 тыс.9 лет назад
Zahra Rizvi Student Council Vice-President 4th Grade Speech Virginia 2015
DARK ACTIVATED ALERTER USING OPAMP 741
Просмотров 3,7 тыс.13 лет назад
DARK ACTIVATED ALERTER USING OPAMP 741

Комментарии

  • @SamusRidley
    @SamusRidley 7 дней назад

    While 63 is the theoretical max for this problem, given an ideal LFSR, it can be shown that the maximum would be no more than 8 for the one in this particular problem. Given: s[i] = s[i-2] ⊕ s[i-4] ⊕ s[i-6] And rules for xor operations: X ⊕ X = 0 0 ⊕ Y = Y s0 = a s1 = b s2 = c s3 = d s4 = e s5 = f s6 = a ⊕ c ⊕ e s7 = b ⊕ d ⊕ f s8 = c ⊕ e ⊕ (a ⊕ c ⊕ e) = a s9 = d ⊕ f ⊕ (b ⊕ d ⊕ f) = b s10 = e ⊕ (a ⊕ c ⊕ e) ⊕ a = c s11 = f ⊕ (b ⊕ d ⊕ f) ⊕ b = d s12 = (a ⊕ c ⊕ e) ⊕ a ⊕ c = e s13 = (b ⊕ d ⊕ f) ⊕ b ⊕ d = f s8-13 match the starting values of s0-s5. Therefore, no matter what sequence is given for s0-s5, this is guaranteed to repeat by s8. That gives this a maximum sequence length of 8.

  • @vineetbhoria245
    @vineetbhoria245 25 дней назад

    Crystall clear

  • @vanidixit3894
    @vanidixit3894 Месяц назад

    when binary starting number is one...then how to start? ex: 60 ^ 29mmod 133 29 binary value-11101

  • @kashifshabbir-ww8qo
    @kashifshabbir-ww8qo Месяц назад

    How to calculate the square of 627 under mod 941

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

    240 power 1783 mod 3233 calculate this

  • @aakash-muadDab-usul
    @aakash-muadDab-usul 2 месяца назад

    Thank you so much, your method is the best!!!

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

    Thanks so much for this method! This made my life a lot easier! Is there a similar method for fast exponentiation that is NOT modular? Like 240^262, NOT 240^262 mod 14? I know a method to do fast exponentiation, but if there were a method that made processing easier, like this method, that would be awesome. Either way, thanks!

  • @ToanPham-wr7xe
    @ToanPham-wr7xe 3 месяца назад

    😮

  • @ToanPham-wr7xe
    @ToanPham-wr7xe 3 месяца назад

    😮

  • @MahnoorAkhtar-b4f
    @MahnoorAkhtar-b4f 3 месяца назад

    Thank you thank you thank you mam i have seen alot of videos but can not understand this concept and your single video clear all my concepts...

  • @silentzaingaming5791
    @silentzaingaming5791 3 месяца назад

    thanks. great explain. I appreciate it

  • @o.s8765
    @o.s8765 3 месяца назад

    you're the best

  • @sazib3936
    @sazib3936 4 месяца назад

    what is the teacher name???

  • @sazib3936
    @sazib3936 4 месяца назад

    it's mod 2 not 6

  • @sazib3936
    @sazib3936 4 месяца назад

    got it.

  • @AbleBrawa
    @AbleBrawa 5 месяцев назад

    Love you😅❤

  • @SaVaGe-_-GuYz
    @SaVaGe-_-GuYz 5 месяцев назад

    thanks a lot, that was super helpful

  • @mayankmahajan9716
    @mayankmahajan9716 5 месяцев назад

    Thank you so much. I had to use this method for my cryptography class and yours is the only video that explained it well.

    • @hmm8161
      @hmm8161 5 месяцев назад

      Same I also used the same method for rsa algo

  • @tariqmath1845
    @tariqmath1845 6 месяцев назад

    Is this work for all numbers

  • @FaizanShabbir-d5i
    @FaizanShabbir-d5i 6 месяцев назад

    is it d=23

  • @4mt
    @4mt 7 месяцев назад

    Thank you!

  • @zaidfaster1321
    @zaidfaster1321 7 месяцев назад

    ITS WORK

  • @islammadatov102
    @islammadatov102 7 месяцев назад

    where can i find this book?

  • @islammadatov102
    @islammadatov102 7 месяцев назад

    Thanks a lot . but I have a question . question is 7 level from which node to start ? whether each node should be checked

  • @codystrange5582
    @codystrange5582 8 месяцев назад

    Thank you for making my life so much easier. I needed and example of an input and output from the f-function to test my program and you my friend are the only one I could find

  • @learning_trespasser
    @learning_trespasser 8 месяцев назад

    thanks

  • @AsimKhan-kn5or
    @AsimKhan-kn5or 9 месяцев назад

    How 4 mod 353 = 4 ?

  • @mysticshadows4388
    @mysticshadows4388 9 месяцев назад

    This is by far the best explanation of this topic.....thank you so much

  • @mrgb-yh8fh
    @mrgb-yh8fh 10 месяцев назад

    fermats theorem can be applicable?

  • @user-nk3np7bh9t
    @user-nk3np7bh9t 10 месяцев назад

    but the crt ans is 248?

  • @vazyfreere6394
    @vazyfreere6394 11 месяцев назад

    0 xor 0 = 1 ?

  • @poorvajhinge7995
    @poorvajhinge7995 11 месяцев назад

    very effective and easy method of solving mod as compared to the binary converstion one

  • @nithya772
    @nithya772 11 месяцев назад

    Thank you mam

  • @Sufi254
    @Sufi254 11 месяцев назад

    Answer should be 4. But you said it's 2.why?

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

    How 2^2 mod 14 is 4?

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

      Divide 2^2 by 14 and find the remainder. So, 4 mod 14 = 4

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

    Hello ma'am Can you continue this series by solving more advanced topics on discretion log and etc There are only a few youtubers out there who solve these topics and this would bring a lot of subscribers for you please ma'am I would be waiting for it Thank you:)

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

    Love you Susan zehra thank you❤

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

    its 2

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

    you made this concept ,crystal clear to me ☺thank you ma'am

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

    Excellent explanation.

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

    Thank you ma'am such an excellent explanation.

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

    Finally i found the way to calculate it thx a lot

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

    Thank you so much 🙏, i could've never wrapped my head around it if it wasn't for your videos

  • @iDK-kw5ei
    @iDK-kw5ei Год назад

    in google the final answer is showing 4 and yours 2 what to do now? which one is correct

  • @rahaf.7240
    @rahaf.7240 Год назад

    It’s not correct

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

    Very helpful for me,thanks!

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

    HOW TO COMPUTE 1819¹³ MOD 2537

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

    Brilliant video.

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

    Great method...plz make video on if calculate modulo of negative power

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

    Thankyou Ma'am, May Allah Bless you