Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 889683
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T13:36:26+00:00 2026-05-15T13:36:26+00:00

I’m writing a piece of code to encrypt a text using symmetric encryption. But

  • 0

I’m writing a piece of code to encrypt a text using symmetric encryption. But it’s not coming back with the right result…

from Crypto.Cipher import AES
import os

crypto = AES.new(os.urandom(32), AES.MODE_CTR, counter = lambda : os.urandom(16))
encrypted = crypto.encrypt("aaaaaaaaaaaaaaaa")
print crypto.decrypt(encrypted)

Here, the decrypted text is different from the original.

I don’t really understand much about cryptography so please bear with me. I understand the CTR mode requires a “counter” function to supply a random counter each time, but why does it need it to be 16 bytes when my key is 32 bytes and it insists that my message is in multiples of 16 bytes too? Is this normal?

I’m guessing that it doesn’t get back to the original message because the counter changed between encrypt and decrypt. But then, how is it supposed to work theoretically anyway? What am I doing wrong? Anyway, I’m forced to resort back to ECB until I figure this out 🙁

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T13:36:26+00:00Added an answer on May 15, 2026 at 1:36 pm

    The counter must return the same on decryption as it did on encryption, as you intuit, so, one (NOT SECURE AT ALL) way to do it is:

    >>> secret = os.urandom(16)
    >>> crypto = AES.new(os.urandom(32), AES.MODE_CTR, counter=lambda: secret)
    >>> encrypted = crypto.encrypt("aaaaaaaaaaaaaaaa")
    >>> print crypto.decrypt(encrypted)
    aaaaaaaaaaaaaaaa
    

    CTR is a block cipher, so the “16-at-a-time” constraint that seems to surprise you is a pretty natural one.

    Of course, a so-called “counter” returning the same value at each call is grossly insecure. Doesn’t take much to do better, e.g….:

    import array
    
    class Secret(object):
      def __init__(self, secret=None):
        if secret is None: secret = os.urandom(16)
        self.secret = secret
        self.reset()
      def counter(self):
        for i, c in enumerate(self.current):
          self.current[i] = c + 1
          if self.current: break
        return self.current.tostring()
      def reset(self):
        self.current = array.array('B', self.secret)
    
    secret = Secret()
    crypto = AES.new(os.urandom(32), AES.MODE_CTR, counter=secret.counter)
    encrypted = crypto.encrypt(16*'a' + 16*'b' + 16*'c')
    secret.reset()
    print crypto.decrypt(encrypted)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.