Transposition Cipher in Python - Cryptography with Python

Поделиться
HTML-код
  • Опубликовано: 21 ноя 2024

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

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

    The way you explianed help me understand it, if possible could you do the dicription part too?

  • @tomparker4314
    @tomparker4314 5 лет назад

    Thanks man. Helps a lot in understanding loops in Python.

  • @brendajackelinepadillapere8638

    Tu vídeo me ayudó muchísimo 🎉

  • @happy9816
    @happy9816 5 лет назад +1

    Great video

  • @rohitpawar7570
    @rohitpawar7570 4 года назад +6

    How to decrypt this encrypted word?

    • @musondasalimu2986
      @musondasalimu2986 3 года назад

      def decrypt(key,message):
      # set rows (message length divided by key, rounded up)
      # set columns (same as key)
      pointer = 0
      decrypted = ''
      # create a 2D array as a table
      table = [[''] * cols for i in range(rows)]
      # for each column in the table
      # for each row in the table
      # if we haven't hit the end of the message yet
      # fill each element with the next character in the message
      # if we have hit the end of the message
      # break
      # for each row in the table
      # for each column in the table
      # add the character to the decrypted message
      return decrypted

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

    Thank you so much ❤️💫

  • @carlfranciscells1954
    @carlfranciscells1954 3 года назад +2

    How to decrypt the encrypted word?

  • @kngwaffler2666
    @kngwaffler2666 4 года назад

    Helped me sooo much thank you

  • @phoenix-zx6rc
    @phoenix-zx6rc 5 лет назад

    Thanks a lot for the video.
    I have a question regarding passing password as input to python script.
    I have used getpass to get input...is there any other options to make it more secure?

  • @alexanderskorde9342
    @alexanderskorde9342 3 года назад +1

    this would be the perfect video if it had decryption in it aswell a shame

  • @kavindunimesh4695
    @kavindunimesh4695 4 года назад

    good

  • @sahilgupta2592
    @sahilgupta2592 4 года назад

    How to decrypt it?