×
1 Choose EITC/EITCA Certificates
2 Learn and take online exams
3 Get your IT skills certified

Confirm your IT skills and competencies under the European IT Certification framework from anywhere in the world fully online.

EITCA Academy

Digital skills attestation standard by the European IT Certification Institute aiming to support Digital Society development

LOG IN TO YOUR ACCOUNT

CREATE AN ACCOUNT FORGOT YOUR PASSWORD?

FORGOT YOUR PASSWORD?

AAH, WAIT, I REMEMBER NOW!

CREATE AN ACCOUNT

ALREADY HAVE AN ACCOUNT?
EUROPEAN INFORMATION TECHNOLOGIES CERTIFICATION ACADEMY - ATTESTING YOUR PROFESSIONAL DIGITAL SKILLS
  • SIGN UP
  • LOGIN
  • INFO

EITCA Academy

EITCA Academy

The European Information Technologies Certification Institute - EITCI ASBL

Certification Provider

EITCI Institute ASBL

Brussels, European Union

Governing European IT Certification (EITC) framework in support of the IT professionalism and Digital Society

  • CERTIFICATES
    • EITCA ACADEMIES
      • EITCA ACADEMIES CATALOGUE<
      • EITCA/CG COMPUTER GRAPHICS
      • EITCA/IS INFORMATION SECURITY
      • EITCA/BI BUSINESS INFORMATION
      • EITCA/KC KEY COMPETENCIES
      • EITCA/EG E-GOVERNMENT
      • EITCA/WD WEB DEVELOPMENT
      • EITCA/AI ARTIFICIAL INTELLIGENCE
    • EITC CERTIFICATES
      • EITC CERTIFICATES CATALOGUE<
      • COMPUTER GRAPHICS CERTIFICATES
      • WEB DESIGN CERTIFICATES
      • 3D DESIGN CERTIFICATES
      • OFFICE IT CERTIFICATES
      • BITCOIN BLOCKCHAIN CERTIFICATE
      • WORDPRESS CERTIFICATE
      • CLOUD PLATFORM CERTIFICATENEW
    • EITC CERTIFICATES
      • INTERNET CERTIFICATES
      • CRYPTOGRAPHY CERTIFICATES
      • BUSINESS IT CERTIFICATES
      • TELEWORK CERTIFICATES
      • PROGRAMMING CERTIFICATES
      • DIGITAL PORTRAIT CERTIFICATE
      • WEB DEVELOPMENT CERTIFICATES
      • DEEP LEARNING CERTIFICATESNEW
    • CERTIFICATES FOR
      • EU PUBLIC ADMINISTRATION
      • TEACHERS AND EDUCATORS
      • IT SECURITY PROFESSIONALS
      • GRAPHICS DESIGNERS & ARTISTS
      • BUSINESSMEN AND MANAGERS
      • BLOCKCHAIN DEVELOPERS
      • WEB DEVELOPERS
      • CLOUD AI EXPERTSNEW
  • FEATURED
  • SUBSIDY
  • HOW IT WORKS
  •   IT ID
  • ABOUT
  • CONTACT
  • MY ORDER
    Your current order is empty.
EITCIINSTITUTE
CERTIFIED

What condition does it take for the Affine Cipher to work?

by Emmanuel Udofia / Sunday, 04 August 2024 / Published in Cybersecurity, EITC/IS/CCF Classical Cryptography Fundamentals, History of cryptography, Modular arithmetic and historical ciphers

The Affine Cipher is a type of monoalphabetic substitution cipher, where each letter in an alphabet is mapped to its numeric equivalent, encrypted using a simple mathematical function, and then converted back to a letter. The encryption function for a letter x is given by:

    \[ E(x) = (ax + b) \mod m \]

Here, x is the numeric equivalent of a letter, a and b are the keys of the cipher, and m is the size of the alphabet. For the standard English alphabet, m is 26.

The decryption function is:

    \[ D(y) = a^{-1}(y - b) \mod m \]

Where y is the encrypted numeric equivalent, and a^{-1} is the modular multiplicative inverse of a modulo m.

Conditions for the Affine Cipher to Work

The Affine Cipher relies on several conditions to ensure that it functions correctly and securely:

1. Choice of a and b:
– The key a must be chosen such that it is coprime with m. This means that the greatest common divisor (GCD) of a and m must be 1. This condition ensures that a has a modular multiplicative inverse a^{-1}, which is important for the decryption process.
– The key b can be any integer from 0 to m-1. This key is used to shift the letters in the alphabet.

2. Modular Arithmetic:
– The operations of addition and multiplication in the encryption and decryption processes are performed modulo m. This ensures that the result stays within the bounds of the alphabet.

3. Alphabet Size (m):
– The size of the alphabet, m, must be known and agreed upon by both the sender and the receiver. For the standard English alphabet, m is 26.

Detailed Explanation with Examples

Encryption Example

Let's consider an example with a = 5, b = 8, and m = 26. We will encrypt the letter 'H'.

1. Convert 'H' to its numeric equivalent: H = 7 (since A = 0, B = 1, …, H = 7, …, Z = 25).
2. Apply the encryption function:

    \[ E(x) = (5x + 8) \mod 26 \]

    \[ E(7) = (5 \cdot 7 + 8) \mod 26 \]

    \[ E(7) = (35 + 8) \mod 26 \]

    \[ E(7) = 43 \mod 26 \]

    \[ E(7) = 17 \]

3. Convert the numeric result back to a letter: 17 = R.

Thus, 'H' is encrypted to 'R'.

Decryption Example

To decrypt 'R' back to 'H', we need to find the modular multiplicative inverse of a = 5 modulo 26. The inverse a^{-1} is a number such that:

    \[ a \cdot a^{-1} \equiv 1 \mod 26 \]

Using the Extended Euclidean Algorithm, we find that the modular inverse of 5 modulo 26 is 21. Now, we apply the decryption function:

    \[ D(y) = a^{-1}(y - b) \mod m \]

    \[ D(17) = 21(17 - 8) \mod 26 \]

    \[ D(17) = 21(9) \mod 26 \]

    \[ D(17) = 189 \mod 26 \]

    \[ D(17) = 7 \]

Convert the numeric result back to a letter: 7 = H.

Thus, 'R' is decrypted back to 'H'.

Importance of Coprime Condition

The requirement that a and m be coprime is important. If a is not coprime with m, the modular multiplicative inverse a^{-1} does not exist, and decryption becomes impossible. For example, if m = 26 and a = 13, the GCD of 13 and 26 is 13, which is not 1. Therefore, 13 does not have an inverse modulo 26, and the Affine Cipher would fail.

Practical Considerations

1. Key Space:
– The key space of the Affine Cipher is determined by the number of valid pairs (a, b). For the English alphabet, there are 12 possible values for a (since there are 12 numbers less than 26 that are coprime with 26) and 26 possible values for b, resulting in a total key space of 12 \times 26 = 312 possible keys.

2. Security:
– The Affine Cipher is not secure by modern standards. It is vulnerable to frequency analysis attacks because it is a monoalphabetic substitution cipher. Each letter in the plaintext is always encrypted to the same letter in the ciphertext, preserving the frequency distribution of the letters.

3. Historical Context:
– The Affine Cipher is a classical cipher and was used in the past when computational resources were limited. It provides a simple introduction to the concepts of modular arithmetic and cryptographic transformations.

The Affine Cipher is a straightforward example of a classical substitution cipher that utilizes modular arithmetic. For it to work correctly, the key a must be coprime with the size of the alphabet m, ensuring the existence of the modular multiplicative inverse necessary for decryption. Though not secure by contemporary standards, the Affine Cipher serves as an educational tool for understanding the principles of encryption and decryption in the context of classical cryptography.

Other recent questions and answers regarding Modular arithmetic and historical ciphers:

  • In a shift cipher, are the letters at the end of the alphabet replaced with letters from the beginning of the alphabet according to modular arithmetic?
  • Is an exhaustive key search effective against substitution ciphers?
  • What does the value K stand for in a shift cipher?
  • Is mod K arithmetic used in a shift cipher, where K is the value of the key and denotes the number of shifted letters?
  • How many equivalence classes are there in modulo 3 arithmetic?
  • Will a shift cipher with a key equal to 4 replace the letter d with the letter h in ciphertext?
  • Do identical plaintext map to identical cipher text of a letter frequency analysis attact against a substitution cipher
  • Are 7 and 12 equivalent in mode 5 operation
  • Are mod 2 addition and subtraction different operations?
  • How can an affine cipher be injective?

View more questions and answers in Modular arithmetic and historical ciphers

More questions and answers:

  • Field: Cybersecurity
  • Programme: EITC/IS/CCF Classical Cryptography Fundamentals (go to the certification programme)
  • Lesson: History of cryptography (go to related lesson)
  • Topic: Modular arithmetic and historical ciphers (go to related topic)
Tagged under: Affine Cipher, Cryptography, Cybersecurity, Decryption, Encryption, Modular Arithmetic
Home » Cybersecurity » EITC/IS/CCF Classical Cryptography Fundamentals » History of cryptography » Modular arithmetic and historical ciphers » » What condition does it take for the Affine Cipher to work?

Certification Center

USER MENU

  • My Account

CERTIFICATE CATEGORY

  • EITC Certification (105)
  • EITCA Certification (9)

What are you looking for?

  • Introduction
  • How it works?
  • EITCA Academies
  • EITCI DSJC Subsidy
  • Full EITC catalogue
  • Your order
  • Featured
  •   IT ID
  • EITCA reviews (Medium publ.)
  • About
  • Contact

EITCA Academy is a part of the European IT Certification framework

The European IT Certification framework has been established in 2008 as a Europe based and vendor independent standard in widely accessible online certification of digital skills and competencies in many areas of professional digital specializations. The EITC framework is governed by the European IT Certification Institute (EITCI), a non-profit certification authority supporting information society growth and bridging the digital skills gap in the EU.
Eligibility for EITCA Academy 90% EITCI DSJC Subsidy support
90% of EITCA Academy fees subsidized in enrolment

    EITCA Academy Secretary Office

    European IT Certification Institute ASBL
    Brussels, Belgium, European Union

    EITC / EITCA Certification Framework Operator
    Governing European IT Certification Standard
    Access contact form or call +32 25887351

    Follow EITCI on X
    Visit EITCA Academy on Facebook
    Engage with EITCA Academy on LinkedIn
    Check out EITCI and EITCA videos on YouTube

    Funded by the European Union

    Funded by the European Regional Development Fund (ERDF) and the European Social Fund (ESF) in series of projects since 2007, currently governed by the European IT Certification Institute (EITCI) since 2008

    Information Security Policy | DSRRM and GDPR Policy | Data Protection Policy | Record of Processing Activities | HSE Policy | Anti-Corruption Policy | Modern Slavery Policy

    Automatically translate to your language

    Terms and Conditions | Privacy Policy
    EITCA Academy
    • EITCA Academy on social media
    EITCA Academy


    © 2008-2026  European IT Certification Institute
    Brussels, Belgium, European Union

    TOP

    We care about your privacy

    EITCI uses cookies and similar technologies to keep this site secure, remember your choices, provide personalized experience, measure the traffic, serve more relevant content and certification programmes. You can accept all cookies or customize your preferences. Cookies are variables used to store website specific information on your device to facilitate processing of data for personalized website visit, such as login to your account, accessing the programmes, placing enrolment orders in chosen programmes and improving your EITC certification journey. You can change or withdraw your consent at any time by clicking the Consent Preferences button at the left-bottom of your screen. We respect your choices and are committed to providing you with a transparent and secure browsing experience, which may be limited when cookies aren't accepted. For more details refer to the Privacy Policy
    Customize Consent Preferences
    We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.
    The cookies categorized as Necessary are stored on your browser as they are essential for enabling the basic functionalities of the site.
    To learn more about how Google processes personal information, visit: Google privacy policy

    Necessary

    Always Active

    Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

    Functional

    Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

    Preferences

    Stores personalization choices such as interface preferences.

    External media and social features

    Allows embedded video, social, chat, and external interactive services that may set their own cookies. Keep off until the user chooses these features.

    Analytics

    Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

    Marketing and conversions

    Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

    CHAT WITH SUPPORT
    Do you have any questions?
    Attach files with the paperclip or paste screenshots into the message box (Ctrl+V). Max 5 file(s), 10 MB each.
    We will reply here and by email. Your conversation is tracked with a support token.