<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE article  PUBLIC "-//NLM//DTD Journal Publishing DTD v3.0 20080202//EN" "http://dtd.nlm.nih.gov/publishing/3.0/journalpublishing3.dtd"><article xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:xlink="http://www.w3.org/1999/xlink" dtd-version="3.0" xml:lang="en" article-type="research article"><front><journal-meta><journal-id journal-id-type="publisher-id">JCC</journal-id><journal-title-group><journal-title>Journal of Computer and Communications</journal-title></journal-title-group><issn pub-type="epub">2327-5219</issn><publisher><publisher-name>Scientific Research Publishing</publisher-name></publisher></journal-meta><article-meta><article-id pub-id-type="doi">10.4236/jcc.2024.124016</article-id><article-id pub-id-type="publisher-id">JCC-132892</article-id><article-categories><subj-group subj-group-type="heading"><subject>Articles</subject></subj-group><subj-group subj-group-type="Discipline-v2"><subject>Computer Science&amp;Communications</subject></subj-group></article-categories><title-group><article-title>
 
 
  A High Efficiency Hardware Implementation of S-Boxes Based on Composite Field for Advanced Encryption Standard
 
</article-title></title-group><contrib-group><contrib contrib-type="author" xlink:type="simple"><name name-style="western"><surname>Yawen</surname><given-names>Wang</given-names></name><xref ref-type="aff" rid="aff1"><sup>1</sup></xref></contrib><contrib contrib-type="author" xlink:type="simple"><name name-style="western"><surname>Sini</surname><given-names>Bin</given-names></name><xref ref-type="aff" rid="aff1"><sup>1</sup></xref></contrib><contrib contrib-type="author" xlink:type="simple"><name name-style="western"><surname>Shikai</surname><given-names>Zhu</given-names></name><xref ref-type="aff" rid="aff1"><sup>1</sup></xref></contrib><contrib contrib-type="author" xlink:type="simple"><name name-style="western"><surname>Xiaoting</surname><given-names>Hu</given-names></name><xref ref-type="aff" rid="aff1"><sup>1</sup></xref></contrib></contrib-group><aff id="aff1"><addr-line>College of Computer Science &amp;amp; Technology, Jiangsu Normal University, Xuzhou, China</addr-line></aff><pub-date pub-type="epub"><day>01</day><month>04</month><year>2024</year></pub-date><volume>12</volume><issue>04</issue><fpage>228</fpage><lpage>246</lpage><history><date date-type="received"><day>11,</day>	<month>March</month>	<year>2024</year></date><date date-type="rev-recd"><day>27,</day>	<month>April</month>	<year>2024</year>	</date><date date-type="accepted"><day>30,</day>	<month>April</month>	<year>2024</year></date></history><permissions><copyright-statement>&#169; Copyright  2014 by authors and Scientific Research Publishing Inc. </copyright-statement><copyright-year>2014</copyright-year><license><license-p>This work is licensed under the Creative Commons Attribution International License (CC BY). http://creativecommons.org/licenses/by/4.0/</license-p></license></permissions><abstract><p>
 
 
  The SubBytes (S-box) transformation is the most crucial operation in the AES algorithm, significantly impacting the implementation performance of AES chips. To design a high-performance S-box, a segmented optimization implementation of the S-box is proposed based on the composite field inverse operation in this paper. This proposed S-box implementation is modeled using Verilog language and synthesized using Design Complier software under the premise of ensuring the correctness of the simulation result. The synthesis results show that, compared to several current S-box implementation schemes, the proposed implementation of the S-box significantly reduces the area overhead and critical path delay, then gets higher hardware efficiency. This provides strong support for realizing efficient and compact S-box ASIC designs.
 
</p></abstract><kwd-group><kwd>Advanced Encryption Standard (AES)</kwd><kwd> S-Box</kwd><kwd> Tower Field</kwd><kwd> Hardware Implementation</kwd><kwd> Application Specific Integration Circuit (ASIC)</kwd></kwd-group></article-meta></front><body><sec id="s1"><title>1. Introduction</title><p>Advanced Encryption Standard (AES) is one of the most important block encryption algorithms at present and has been widely applied in various fields, such as communication, network security, e-commerce, and so on. In this algorithm, the plaintext is fixed at 128 bits, while its key length can vary between 128,192 and 256 bits. This algorithm arranges the 128-bit plaintext into a 4 &#180; 4 state matrix by byte, and then encrypts the plaintext through multiple iterations of the round function which includes SubBytes (S-box), ShiftRow, and MixColumnand AddRoundKey operations. The number of iterations of encryption is determined by the length of the key 10 iterations for the 128-bit key, 12 iterations for a 192-bit key, and 14 iterations for a 256-bit key. Among these operations in the AES algorithm, S-box transformation is the only nonlinear transformation that plays a crucial role in the security of the encryption algorithm [<xref ref-type="bibr" rid="scirp.132892-ref1">1</xref>] . It makes cryptanalysis more difficult by adding confusion and diffusion and ensuring the security of the AES algorithm. However, its complexity largely impacts AES implementation performance.</p><p>Researchers have focused on improving the performance of S-box implementation through two methods: the look-up table method (LUT) [<xref ref-type="bibr" rid="scirp.132892-ref2">2</xref>] [<xref ref-type="bibr" rid="scirp.132892-ref3">3</xref>] and the algebraic method [<xref ref-type="bibr" rid="scirp.132892-ref4">4</xref>] [<xref ref-type="bibr" rid="scirp.132892-ref5">5</xref>] . The LUT method can transform complex nonlinear operations into simple look-up table operations, reducing the complexity and difficulty of implementation, but it has drawbacks like high area overhead and vulnerability to attack. In the algebraic method, the S-box is implemented based on the logical expression between inputs and outputs. Compared with the LUT method, the algebraic method does not need to calculate and store 256 predefined values of S-Box in ROM, resulting in a smaller area overhead. However, this kind of method involves the complex computation of the multiplicative inversion in finite field GF(2<sup>8</sup>), which leads to low processing speed.</p><p>To achieve a better tradeoff between area overhead and speed for S-box implementation, the research has explored various strategies. Wang et al. [<xref ref-type="bibr" rid="scirp.132892-ref6">6</xref>] modified the affine transformation part of the S-box by using a pipeline, and proposed an area optimized combinational logic S-box implementation of AES. QIN et al. [<xref ref-type="bibr" rid="scirp.132892-ref7">7</xref>] obtained the logic expressions of the S-box and inverse S-box in the AES algorithm through the improved Q-M simplifying method, which reduced the delay, area, and power of the circuit. However, due to the bottleneck of multiplication inversion operation, this kind of improvement is limited. To address the bottleneck, a method based on composite fields was proposed [<xref ref-type="bibr" rid="scirp.132892-ref8">8</xref>] [<xref ref-type="bibr" rid="scirp.132892-ref9">9</xref>] . Using this method, one can convert the multiplicative inversion in GF(2<sup>8</sup>) to low-order fields such as GF(2<sup>4</sup>), GF(2<sup>2</sup>), and GF(2) through isomorphic mapping, thereby reducing the complexity of multiplicative inversion and improving the efficiency of S-box processes. However, the implementation performance of S-box based on composite fields is related to the selection of low-order fields and their representation basis. To address this issue, several scholars have conducted extensive research on the selection of isomorphic matrix or polynomial basis and have proposed various optimization schemes of S-box [<xref ref-type="bibr" rid="scirp.132892-ref10">10</xref>] [<xref ref-type="bibr" rid="scirp.132892-ref11">11</xref>] [<xref ref-type="bibr" rid="scirp.132892-ref12">12</xref>] [<xref ref-type="bibr" rid="scirp.132892-ref13">13</xref>] . R. Ueno et al. [<xref ref-type="bibr" rid="scirp.132892-ref14">14</xref>] used different polynomial basis and Galois field arithmetic to optimize the inversion circuit, and proposed an efficient and compact S-box architecture. Some structural optimization schemes have also been proposed to improve the performance of the S-box. A. Reyhani-Masoleh et al. [<xref ref-type="bibr" rid="scirp.132892-ref15">15</xref>] mapped the finite field GF(2<sup>8</sup>) to tower fields and proposed the structure of S-box and inverse S-box combination. Y.-T. TENG et al. [<xref ref-type="bibr" rid="scirp.132892-ref16">16</xref>] adopted a pipeline architecture based on composite fields and combined S-box and inverse S-box to achieve optimization effects. In [<xref ref-type="bibr" rid="scirp.132892-ref17">17</xref>] [<xref ref-type="bibr" rid="scirp.132892-ref18">18</xref>] , an optimization scheme of the S-box is proposed by changing the order and structure of affine transformation and multiplication inversion. In addition, the method of combining combinational logic simplification technique with composite fields is often used to optimize the S-box implementation. A. Nakashima et al. [<xref ref-type="bibr" rid="scirp.132892-ref19">19</xref>] optimized the isomorphic mapping logic by combining multiplicative and exponential offsets. S. -H LIN et al. [<xref ref-type="bibr" rid="scirp.132892-ref20">20</xref>] proposed a S-box structure of a seven-stage hardware pipeline system with high throughput based on composite fields, logic optimization technology and pipeline-flow technology.</p><p>In this paper, we propose a low-area, high-performance S-box ASIC (Application Specific Integration Circuit) implementation by combining composite fields, the Karnaugh map simplification technique, the Input Variable Bypass Technique (IVB) [<xref ref-type="bibr" rid="scirp.132892-ref21">21</xref>] and other combinational logic simplification techniques. The main contributions of this paper are as follows:</p><p>1) We merged the inverse isomorphism and affine transformation into one matrix transform, which simplifies the implementation of the S-box and reduces the area overhead.</p><p>2) Based on composite fields, we map the multiplicative inversion in GF(2<sup>8</sup>), GF(2<sup>4</sup>) and GF(2<sup>2</sup>) to GF((2<sup>4</sup>)<sup>2</sup>), GF((2<sup>2</sup>)<sup>2</sup>) and GF(2) respectively. This approach reduces the complexity of multiplicative inversion.</p><p>3) We proposed a high efficiency of S-box architecture based on segmented optimization by combing different logic simplification techniques and exploring different segment combinations.</p><p>The organization of the remaining sections of this paper is as follows: Section 2 introduces basic theoretical background of this research topic in this paper. Section 3 describes the segmented optimization S-box structure proposed in this paper. Section 4 presents the logic derivation and optimization of each module in the proposed structure. Section 5 provides the experiment result and performance evaluation. Finally, in Section 6, this paper is concluded.</p></sec><sec id="s2"><title>2. Preliminaries</title><sec id="s2_1"><title>2.1. GF(2<sup>8</sup>) and Its Operations</title><p>GF(2<sup>8</sup>) is a finite field with 256 elements. These elements can be represented in 8-bit binary or as polynomials of degrees less than 8 with coefficients in GF(2). Suppose an element a ∈ GF ( 2 8 ) and its binary form is a 7 a 6 a 5 a 4 a 3 a 2 a 1 a 0 , then its corresponding polynomial representation is shown in Equation (1).</p><p>a ( x ) = a 7 x 7 + a 6 x 6 + ⋯ + a 1 x + a 0     ( a i ∈ GF ( 2 ) ) (1)</p><p>The operations in GF(2<sup>8</sup>) include addition/subtraction, multiplication, inversion, and other operations. The addition/subtraction operation here ( ⊕ ) is a bitwise XOR operation which, in polynomial representation, corresponds to the XOR of coefficients of the same terms.</p><p>The multiplication operation is modular multiplication ( ⊗ ). It involves two steps: polynomial multiplication and reduction modulo an irreducible polynomial m ( x ) . Let a ( x ) and b ( x ) be elements in GF(2<sup>8</sup>) and c ( x ) be their product. Then c ( x ) = a ( x ) &#215; b ( x ) mod m ( x ) .</p><p>The multiplicative inverse a − 1 ( x ) of a ( x ) in GF(2<sup>8</sup>) is defined as the element that satisfies a ( x ) &#215; b ( x ) mod m ( x ) = 1 .</p><p>Note that, in the AES algorithm, irreducible polynomial in GF(2<sup>8</sup>) is specified as m ( x ) = x 8 + x 4 + x 3 + x + 1 .</p></sec><sec id="s2_2"><title>2.2. The Fundamental Construction Principle of the S-Box Based on Composite Fields</title><p>The original S-box transformation in the AES algorithm consists of two parts: multiplicative inversion and affine transformation in GF(2<sup>8</sup>). Its algebraic expression is shown as Equation (2):</p><p>S b [ x ] = A x − 1 ⊕ 63 H (2)</p><p>where x , S b [ x ] ∈ GF ( 2 8 ) are the 8-bit input and output of the S-box respectively. x − 1 is the inversion of x, and A is affine transformation matrix.</p><p>A = [ 1 1 1 1 1 0 0 0 0 1 1 1 1 1 0 0 0 0 1 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 0 0 0 1 ] .</p><p>As mentioned above, in the S-box transformation, the operation to find the inversion element of x is the most complex and time-consuming. Traditionally, the extended Euclidean algorithm is employed for inversion in GF(2<sup>8</sup>), but its hardware implementation efficiency is not high. Therefore, the method of solving inversion based on composite fields was proposed. The key idea of this method is to transform the inversion operation in high-order fields into low-order fields, thus reducing the complexity of the inverse algorithm. Specifically, the implementation of the S-box based on composite fields can be divided into four steps:</p><p>1) Mapping an element q in GF(2<sup>8</sup>) to q ′ in the composite field GF(2<sup>4</sup>)<sup>2</sup> by using an isomorphic matrix so that q ′ can be represented as b x + c in GF(2<sup>4</sup>)<sup>2</sup> where b , c ∈ GF ( 2 4 ) .</p><p>2) Using Equation (3) to find the multiplicative inverse of q ′ in GF((2<sup>4</sup>)<sup>2</sup>) [<xref ref-type="bibr" rid="scirp.132892-ref22">22</xref>] .</p><p>q ′ − 1 = ( b x + c ) − 1 = b ( b 2 λ ⊕ b c β ⊕ c 2 ) − 1 x + ( c ⊕ b β ) ( b 2 λ ⊕ b c β ⊕ c 2 ) − 1 (3)</p><p>3) Converting q ′ − 1 in GF(2<sup>4</sup>)<sup>2</sup> into q − 1 in GF(2<sup>8</sup>) by using the inverse of isomorphic matrix.</p><p>4) Performing the operation A q − 1 ⊕ 63 H to get final the output of S-box S b [ q ] .</p><p>Note that β and l in Equation (3) are the coefficients of the irreducible polynomial x 2 + β x + λ chosen for multiplication when mapping GF(2<sup>8</sup>) to GF((2<sup>4</sup>)<sup>2</sup>).</p></sec></sec><sec id="s3"><title>3. Proposed S-Box Architecture Based on Segmented Optimization</title><p>This section presents a segmented optimized S-box architecture. As shown in <xref ref-type="fig" rid="fig1">Figure 1</xref>, this architecture consists of an isomorphic mapping module, an inversion module in composite fields and a merged module of inverse isomorphism and affine transformation. The functions of each module are described as follows:</p><p>The isomorphic mapping module: To convert an 8-bit element q (be regarded as a column vector) in GF(2<sup>8</sup>) into q ′ in GF((2<sup>4</sup>)<sup>2</sup>) by multiplying q by the isomorphic matrix d. That is q ′ = δ q .</p><p>The inversion module in composite fields: To calculate the inversion of q ′ in GF((2<sup>4</sup>)<sup>2</sup>). The inversion operation is completed by three steps F<sub>1</sub>, F<sub>2</sub>, F<sub>3</sub>. All operations in submodules F<sub>1</sub>, F<sub>2</sub>, F<sub>3</sub> are 4-bit operations in the low-order field GF(2<sup>4</sup>) which largely reduces the computational complexity.</p><p>The merged module of inverse isomorphism and affine transformation: To complete the operation a = A δ − 1 q ′ − 1 ⊕ 63 H equivalently by replacing A δ − 1 with a merged matrix B and optimizing XOR constant operation where δ − 1 represent the inverse isomorphism matrix.</p></sec><sec id="s4"><title>4. Logic Derivation and Optimizations</title><p>In this section, we present the logic derivation for three modules and corresponding sub-segments in each module shown in <xref ref-type="fig" rid="fig1">Figure 1</xref> in Section 3.</p><sec id="s4_1"><title>4.1. The Isomorphic Mapping Module</title><p>When calculating multiplicative inverses in GF(2<sup>8</sup>) based on composite fields, the first step is to map the elements in GF(2<sup>8</sup>) to the composite field GF((2<sup>4</sup>)<sup>2</sup>) using by multiplying an isomorphic matrix, but these isomorphic matrix is not fixed because the elements in GF((2<sup>4</sup>)<sup>2</sup>) can be generated by different irreducible polynomials. It implies that there exists diversity in the isomorphic mapping matrix from elements in GF(2<sup>8</sup>) to GF((2<sup>4</sup>)<sup>2</sup>). To optimize the implementation performance of the isomorphic mapping module in S-box, it is necessary to carefully to select appropriate irreducible polynomials to get the best isomorphic matrix, thereby reducing critical path delay and area overhead. Refer to [<xref ref-type="bibr" rid="scirp.132892-ref22">22</xref>] , we choose the isomorphic matrix δ as shown in Equation (4).</p><p>δ = [ 1 0 1 0 0 0 0 0 1 1 0 1 1 1 1 0 1 0 1 0 1 1 0 0 1 0 1 0 1 1 1 0 1 1 0 0 0 1 1 0 1 0 0 1 1 1 1 0 0 1 0 1 0 0 1 0 0 1 0 0 0 0 1 1 ] (4)</p><p>Assuming that the input of the S-box is q = [ q 7 , q 6 , q 5 , q 4 , q 3 , q 2 , q 1 , q 0 ] T , the expression for the output of the isomorphic mapping module is shown as Equation (5).</p><p>δ &#215; q = q ′ = [ b 3 b 2 b 1 b 0 c 3 c 2 c 1 c 0 ] = [ q 7 ⊕ q 5 q 7 ⊕ q 6 ⊕ q 4 ⊕ q 3 ⊕ q 2 ⊕ q 1 q 7 ⊕ q 5 ⊕ q 3 ⊕ q 2 q 7 ⊕ q 5 ⊕ q 3 ⊕ q 2 ⊕ q 1 q 7 ⊕ q 6 ⊕ q 2 ⊕ q 1 q 7 ⊕ q 4 ⊕ q 3 ⊕ q 2 ⊕ q 1 q 6 ⊕ q 4 ⊕ q 1 q 6 ⊕ q 1 ⊕ q 0 ] (5)</p><p>where b<sub>3</sub>b<sub>2</sub>b<sub>1</sub>b<sub>0</sub> represents the high 4 bits of output q ′ , and c<sub>3</sub>c<sub>2</sub>c<sub>1</sub>c<sub>0</sub> represents the low 4 bits of output q ′ .</p></sec><sec id="s4_2"><title>4.2. The Inversion Module in Composite Fields</title><p>To obtain the multiplicative inverse of q ′ in GF((2<sup>4</sup>)<sup>2</sup>) expressed as Equation (3), we decompose Equation (3) into F<sub>1</sub>, F<sub>2</sub> and F<sub>3</sub> as shown in Equation (6), (7) and (8), and use the recursive deduction method to get the logical expressions of F<sub>1</sub>, F<sub>2</sub> and F<sub>3</sub>.</p><p>F 1 = b 2 λ ⊕ b c β ⊕ c 2 (6)</p><p>F 2 = ( F 1 ) − 1 (7)</p><p>F 3 = b F 2 | | ( c ⊕ b β ) F 2 (8)</p><p>where the symbol “||” in Equation (8) represents concatenation.</p><p>In order to optimize the implementation, we select β = 1, λ = 1100 b to be the coefficients of the generating polynomial m 1 ( x ) = x 2 + β x + λ of the composite field GF((2<sup>4</sup>)<sup>2</sup>), then Equations (6), (7) and (8) are simplified to (9), (10), (11).</p><p>F 1 = b 2 λ ⊕ b c ⊕ c 2 (9)</p><p>F 2 = ( F 1 ) − 1 (10)</p><p>F 3 = b F 2 | | ( c ⊕ b ) F 2 (11)</p><p>Note that, when calculating inversion in composite fields, three types of irreducible polynomials are required to complete the operation conversion from the high-order field to the low-order field. To simplify the following expression, we list the three types of polynomials as shown in <xref ref-type="table" rid="table1">Table 1</xref>.</p><sec id="s4_2_1"><title>4.2.1. F<sub>1</sub> Module</title><p><xref ref-type="fig" rid="fig2">Figure 2</xref> shows the calculation process of F<sub>1</sub>. Next, we will deduce and optimize the logic expression for each step in <xref ref-type="fig" rid="fig2">Figure 2</xref>.</p><table-wrap id="table1" ><label><xref ref-type="table" rid="table1">Table 1</xref></label><caption><title> Three types of irreducible polynomials</title></caption><table><tbody><thead><tr><th align="center" valign="middle" >Composite Field</th><th align="center" valign="middle" >Irreducible Polynomial</th></tr></thead><tr><td align="center" valign="middle" >GF(2<sup>8</sup>) &#174; GF((2<sup>4</sup>)<sup>2</sup>)</td><td align="center" valign="middle" >m 1 ( x ) = x 2 + x + λ , where λ = 1100 b</td></tr><tr><td align="center" valign="middle" >GF(2<sup>4</sup>) &#174; GF((2<sup>2</sup>)<sup>2</sup>)</td><td align="center" valign="middle" >m 2 ( x ) = x 2 + x + φ , where φ = 10 b</td></tr><tr><td align="center" valign="middle" >GF(2<sup>2</sup>) &#174; GF((2)<sup>2</sup>)</td><td align="center" valign="middle" >m 3 ( x ) = x 2 + x + 1</td></tr></tbody></table></table-wrap><p>1) b<sup>2</sup> operation in GF(2<sup>4</sup>)</p><p>As can be seen from <xref ref-type="fig" rid="fig2">Figure 2</xref>, we let k = b 2 = k 3 k 2 k 1 k 0 = ( b 3 b 2 b 1 b 0 ) 2 , then this operation can be expressed as the form in GF((2<sup>2</sup>)<sup>2</sup>) shown in Equation (12).</p><p>k = b 2 = ( b H x + b L ) 2 mod m 2 ( x ) = b H 2 x + ( b H 2 φ ⊕ b L 2 ) = k H x + k L (12)</p><p>where k H = k 3 k 2 , k L = k 1 k 0 , b H = b 3 b 2 , b L = b 1 b 0 , m 2 ( x ) (see <xref ref-type="table" rid="table1">Table 1</xref>) is an irreducible generating polynomial for GF((2<sup>2</sup>)<sup>2</sup>). Obviously,</p><p>k H = b H 2 ; k L = b H 2 φ ⊕ b L 2 . (13)</p><p>Then one can further decompose the operation b H 2 and b L 2 in GF(2<sup>2</sup>) to GF(2) to get Equation (14):</p><p>{ b H 2 = ( b 3 x + b 2 ) 2 mod m 3 ( x ) = b 3 x + ( b 3 ⊕ b 2 ) b L 2 = ( b 1 x + b 0 ) 2 mod m 3 ( x ) = b 1 x + ( b 1 ⊕ b 0 ) (14)</p><p>where m 3 ( x ) (see <xref ref-type="table" rid="table1">Table 1</xref>) is an irreducible generating polynomial in GF(2).</p><p>By combining Equation (13), (14), we can obtain Equation (15).</p><p>{ k H = b 3 x + ( b 3 ⊕ b 2 ) = k 3 x + k 2 k L = ( b 1 ⊕ b 2 ) x + ( b 0 ⊕ b 1 ⊕ b 3 ) = k 1 x + k 0 (15)</p><p>According to Equation (15), we can get the expression of k as shown in equation (16).</p><p>{ k 3 = b 3 k 2 = b 2 ⊕ b 3 k 1 = b 1 ⊕ b 2 k 0 = b 0 ⊕ b 1 ⊕ b 3 (16)</p><p>2) t = b 2 λ operation</p><p>As mentioned above, in order to optimize the expression, we choose λ = { 1100 } 2 and let</p><p>t = b 2 λ = k λ = t 3 t 2 t 1 t 0 = ( k 3 k 2 k 1 k 0 ) ⊗ λ .</p><p>Then, the polynomial representation of t can be written as Equation (17).</p><p>t = ( k H x + k L ) ( λ H x + λ L ) mod m 2 ( x ) = ( k H λ H x 2 + k H λ L x + k L λ H x + k L λ L ) mod m 2 ( x ) = ( k L λ H ⊕ k H λ H ) x + k H λ H φ = t H x + t L (17)</p><p>where t H = t 3 t 2 , t L = t 1 t 0 , λ H = 11 , λ L = 00 .</p><p>Using similar derivation method used for k, t H and t L can be expressed as Equation (18).</p><p>{ t H = k L λ H ⊕ k H λ H = ( ( k 1 x + k 0 ) ( x + 1 ) + ( k 3 x + k 2 ) ( x + 1 ) ) mod m 3 ( x ) = ( k 0 ⊕ k 2 ) x + ( k 0 ⊕ k 1 ⊕ k 2 ⊕ k 3 ) = t 3 x + t 2 t L = k H λ H φ = [ ( k 3 x + k 2 ) ( x + 1 ) x ] mod m 3 ( x ) = k 3 x + k 2 = t 1 x + t 0 (18)</p><p>Then we can get the expression of t as Equation (19).</p><p>{ t 3 = k 0 ⊕ k 2 t 2 = k 0 ⊕ k 1 ⊕ k 2 ⊕ k 3 t 1 = k 3 t 0 = k 2 (19)</p><p>3) s = c ( b ⊕ c ) operation</p><p>For s, we let m i = b i ⊕ c i , then the expression of s can be written as Equation (20).</p><p>{ s 3 = c 3 m 2 ⊕ c 2 m 3 ⊕ c 3 m 0 ⊕ c 0 m 3 ⊕ c 2 m 1 ⊕ c 1 m 2 ⊕ c 3 m 3 ⊕ c 3 m 1 ⊕ c 1 m 3 s 2 = c 2 m 2 ⊕ c 2 m 0 ⊕ c 0 m 2 ⊕ c 3 m 3 ⊕ c 3 m 1 ⊕ c 1 m 3 s 1 = c 1 m 0 ⊕ c 0 m 1 ⊕ c 2 m 2 ⊕ c 1 m 1 ⊕ c 3 m 2 ⊕ c 2 m 3 s 0 = c 0 m 0 ⊕ c 1 m 1 ⊕ c 3 m 2 ⊕ c 2 m 3 ⊕ c 3 m 3 (20)</p><p>By combining Equations (16), (19), (20) and simplifying them, we can obtain the logic expression of e as Equation (21).</p><p>{ e 3 = b 0 c 3 &#175; ⊕ b 1 c 2 &#175; ⊕ b 2 c 1 &#175; ⊕ c 3 b 2 ⊕ c 2 b 3 ⊕ c 0 b 3 ⊕ c 3 b 3 &#175; ⊕ c 3 b 1 ⊕ c 1 b 3 e 2 = c 2 &#175; b 0 ⊕ c 1 &#175; b 3 ⊕ c 2 b 2 &#175; ⊕ c 0 b 2 ⊕ c 3 b 3 &#175; ⊕ c 3 b 1 e 1 = c 1 b 0 ⊕ c 0 b 1 ⊕ c 2 b 2 &#175; ⊕ c 1 b 1 &#175; ⊕ c 3 b 2 ⊕ c 2 &#175; b 3 e 0 = c 0 b 0 &#175; ⊕ c 1 b 1 &#175; ⊕ c 3 &#175; b 2 ⊕ c 2 &#175; b 3 ⊕ c 3 b 3 &#175; (21)</p></sec><sec id="s4_2_2"><title>4.2.2. F<sub>2</sub> Module</title><p>The F<sub>2</sub> module is used to calculate the inversion in GF(2<sup>4</sup>). To derive and simplify the output expression of F<sub>2</sub>, we first utilize the idea of tower fields to partition the operation in F<sub>2</sub> into three parts: G<sub>1</sub>, G<sub>2</sub> and G<sub>3</sub>, as depicted in <xref ref-type="fig" rid="fig3">Figure 3</xref>. Subsequently, after obtaining the logic expression of G<sub>1</sub>, G<sub>2</sub> and G<sub>3</sub>, we merge them into an expression. Finally, we employ Karnaugh map simplification technique, input variable bypass technique [<xref ref-type="bibr" rid="scirp.132892-ref21">21</xref>] and other logic simplification technique to further simplify and obtain the output of F<sub>2</sub>.</p><p>Specifically, according to the idea of tower fields, the G<sub>1</sub>, G<sub>2</sub> and G<sub>3</sub> can be expressed as Equation (22).</p><p>{ G 1 = e H 2 φ ⊕ e L ( e H ⊕ e L ) G 2 = ( G 1 ) − 1 G 3 = e H G 2 | | ( e H ⊕ e L ) G 2 (22)</p><p>where e H = e 3 e 2 , e L = e 1 e 0 .</p><p>For G<sub>1</sub>, we first get Equation (23), then obtain the expression of G<sub>1</sub> as shown in equation (24) by combining Equations (22) and (23) and simplifying them.</p><p>{ e H 2 = ( e 3 , e 2 ⊕ e 3 ) e H 2 φ = ( e 2 , e 3 ) e L ( e H ⊕ e L ) = ( e 1 e 3 &#175; ⊕ e 0 e 3 ⊕ e 1 e 2 , e 1 e 3 &#175; ⊕ e 0 e 2 &#175; ) (23)</p><p>G 1 = ( h 1 , h 0 )                         = ( e 1 e 3 &#175; ⊕ e 0 e 3 ⊕ e 2 e 1 &#175; , e 3 ⊕ e 1 e 3 &#175; ⊕ e 0 e 2 &#175; ) (24)</p><p>For G<sub>2</sub>, we directly use the simplification method of Karnaugh map to obtain its output expression as shown in Equation (25).</p><p>{ h 1 ' = h 1 h 0 ' = h 1 ⊕ h 0 (25)</p><p>Finally, by combining with Equation (24) and (25) and G<sub>3</sub> in Equation (22) and simplifying the expression combined, we obtain the expression of F<sub>2</sub> as shown in Equation (26).</p><p>{ y 3 = e 0 &#175; e 3 ⊕ e 1 e 2 e 3 &#175; ⊕ e 1 &#175; e 2 y 2 = e 0 e 2 &#175; e 3 ⊕ e 1 e 2 e 3 ⊕ e 1 &#175; e 2 y 1 = e 1 ⊕ e 0 e 1 e 2 &#175; ⊕ e 3 ⊕ e 1 e 2 e 3 &#175; ⊕ e 0 &#175; e 1 &#175; e 2 ⊕ e 0 e 1 e 3 &#175; y 0 = e 1 e 2 ⊕ e 1 e 2 &#175; e 3 &#175; ⊕ e 0 &#175; e 1 &#175; e 2 ⊕ e 0 e 1 e 3 ⊕ e 0 e 2 &#175; e 3 &#175; (26)</p></sec><sec id="s4_2_3"><title>4.2.3. F<sub>3</sub> Module</title><p>As shown in <xref ref-type="fig" rid="fig1">Figure 1</xref>, b, c and y are the inputs of F<sub>3</sub>, then we can derive to get the output expression of F<sub>3</sub> q ′ 7 − 1 q ′ 6 − 1 q ′ 5 − 1 q ′ 4 − 1 q ′ 3 − 1 q ′ 2 − 1 q ′ 1 − 1 q ′ 0 − 1 as shown in Equation (27).</p><p>{ q ′ 7 − 1 = y 3 ( b 0 ⊕ b 1 ⊕ b 2 ⊕ b 3 ) ⊕ y 2 ( b 1 ⊕ b 3 ) ⊕ y 1 ( b 2 ⊕ b 3 ) ⊕ y 0 b 3 q ′ 6 − 1 = y 3 ( b 1 ⊕ b 3 ) ⊕ y 2 ( b 0 ⊕ b 2 ) ⊕ y 1 b 3 ⊕ y 0 b 2 q ′ 5 − 1 = y 3 b 2 ⊕ y 2 ( b 2 ⊕ b 3 ) ⊕ y 1 ( b 0 ⊕ b 1 ) ⊕ y 0 b 1 q ′ 4 − 1 = y 3 ( b 2 ⊕ b 3 ) ⊕ y 2 b 3 ⊕ y 1 b 1 ⊕ y 0 b 0 q ′ 3 − 1 = y 3 ( b 0 ⊕ c 0 ⊕ b 1 ⊕ c 1 ⊕ b 2 ⊕ c 2 ⊕ b 3 ⊕ c 3 ) ⊕ y 2 ( b 1 ⊕ c 1 ⊕ b 3 ⊕ c 3 ) ⊕ y 1 ( b 2 ⊕ c 2 ⊕ b 3 ⊕ c 3 ) ⊕ y 0 ( b 3 ⊕ c 3 ) q ′ 2 − 1 = y 3 ( b 1 ⊕ c 1 ⊕ b 3 ⊕ c 3 ) ⊕ y 2 ( b 0 ⊕ c 0 ⊕ b 2 ⊕ c 2 ) ⊕ y 1 ( b 3 ⊕ c 3 ) ⊕ y 0 ( b 2 ⊕ c 2 ) q ′ 1 − 1 = y 3 ( b 2 ⊕ c 2 ) ⊕ y 2 ( b 2 ⊕ c 2 ⊕ b 3 ⊕ c 3 ) ⊕ y 1 ( b 0 ⊕ c 0 ⊕ b 1 ⊕ c 1 ) ⊕ y 0 ( b 1 ⊕ c 1 ) q ′ 0 − 1 = y 3 ( b 2 ⊕ c 2 ⊕ b 3 ⊕ c 3 ) ⊕ y 2 ( b 3 ⊕ c 3 ) ⊕ y 1 ( b 1 ⊕ c 1 ) ⊕ y 0 ( b 0 ⊕ c 0 ) (27)</p><p>To optimize the implementation of Equation (27) in the hardware circuit, we extract the common part of 8 sub-expressions of Equation (27) and define intermediate variable d i as shown in Equation (28). Then the expression can be optimized into Equation (29).</p><p>{ d 0 = b 0 ⊕ b 1 d 1 = b 0 ⊕ b 2 d 2 = b 1 ⊕ b 3 d 3 = b 2 ⊕ b 3 d 4 = b 3 ⊕ c 3 d 5 = b 2 ⊕ c 2 d 6 = b 1 ⊕ c 1 d 7 = b 0 ⊕ c 0 d 8 = d 0 ⊕ d 3 d 9 = d 4 ⊕ d 5 ⊕ d 6 ⊕ d 7 d 10 = d 4 ⊕ d 6 d 11 = d 4 ⊕ d 5 d 12 = d 5 ⊕ d 7 d 13 = d 6 ⊕ d 7 (28)</p><p>{ q ′ 7 − 1 = y 3 d 8 ⊕ y 2 d 2 ⊕ y 1 d 3 ⊕ y 0 b 3 q ′ 6 − 1 = y 3 d 2 ⊕ y 2 d 1 ⊕ y 1 b 3 ⊕ y 0 b 2 q ′ 5 − 1 = y 3 b 2 ⊕ y 2 d 3 ⊕ y 1 d 0 ⊕ y 0 b 1 q ′ 4 − 1 = y 3 d 3 ⊕ y 2 b 3 ⊕ y 1 b 1 ⊕ y 0 b 0 q ′ 3 − 1 = y 3 d 9 ⊕ y 2 d 10 ⊕ y 1 d 11 ⊕ y 0 d 4 q ′ 2 − 1 = y 3 d 10 ⊕ y 2 d 12 ⊕ y 1 d 4 ⊕ y 0 d 5 q ′ 1 − 1 = y 3 d 5 ⊕ y 2 d 11 ⊕ y 1 d 13 ⊕ y 0 d 6 q ′ 0 − 1 = y 3 d 11 ⊕ y 2 d 4 ⊕ y 1 d 6 ⊕ y 0 d 7 (29)</p></sec></sec><sec id="s4_3"><title>4.3. The Merged Module of Inverse Isomorphism and Affine Transformation</title><p>This module completes the operation a = ( A δ − 1 q ′ − 1 ) ⊕ 63 H . For this module, we use two methods to optimize the logic to reduce the number of logic gates and shorten the critical path delay: 1) To merge the inverse isomorphic mapping and affine transformation into a matrix transformation. 2) To simplify the logic expression for XOR operation with 63H by using NOT gate to replace XOR.</p><p>Specifically, we let B = A &#215; δ − 1 , q ′ − 1 and q to be the input and output of the merged module of inverse isomorphism and affine transformation respectively. Then the expression of the original expression a = ( A δ − 1 q ′ − 1 ) ⊕ 63 H can be reduced to Equation (30).</p><p>a = B q ′ − 1 ⊕ 63 H (30)</p><p>where the inverse transformation matrix δ − 1 , affine transformation matrix A and merged matrix B corresponds to Equations (31), (32) and (33) respectively.</p><p>δ − 1 = [ 1 1 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 0 0 0 1 0 0 1 1 1 0 1 1 0 0 0 1 1 1 1 1 0 1 0 0 1 1 1 1 0 0 0 1 1 0 0 0 0 0 1 1 1 0 1 0 1 ] (31)</p><p>A = [ 1 1 1 1 1 0 0 0 0 1 1 1 1 1 0 0 0 0 1 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 0 0 0 1 ] (32)</p><p>B = A δ − 1 = [ 1 0 0 0 1 1 0 0 1 1 1 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 1 0 0 0 0 0 1 1 1 0 1 1 1 1 1 0 1 1 0 0 0 0 0 0 1 1 1 0 0 0 1 1 1 ] (33)</p><p>Then by combining the Equations (30) and (33), we can get the expression of output of S-box a as shown in Equation (34).</p><p>{ a 7 = q ′ 7 − 1 ⊕ q ′ 3 − 1 ⊕ q ′ 2 − 1 ⊕ 0 a 6 = q ′ 7 − 1 ⊕ q ′ 6 − 1 ⊕ q ′ 5 − 1 ⊕ q ′ 4 − 1 ⊕ 1 a 5 = q ′ 7 − 1 ⊕ q ′ 2 − 1 ⊕ 1 a 4 = q ′ 7 − 1 ⊕ q ′ 4 − 1 ⊕ q ′ 1 − 1 ⊕ q ′ 0 − 1 ⊕ 0 a 3 = q ′ 2 − 1 ⊕ q ′ 1 − 1 ⊕ q ′ 0 − 1 ⊕ 0 a 2 = q ′ 6 − 1 ⊕ q ′ 5 − 1 ⊕ q ′ 4 − 1 ⊕ q ′ 3 − 1 ⊕ q ′ 2 − 1 ⊕ q ′ 0 − 1 ⊕ 0 a 1 = q ′ 7 − 1 ⊕ q ′ 0 − 1 ⊕ 1 a 0 = q ′ 7 − 1 ⊕ q ′ 6 − 1 ⊕ q ′ 2 − 1 ⊕ q ′ 1 − 1 ⊕ q ′ 0 − 1 ⊕ 1 (34)</p><p>Observing the expression in Equation (34), we find that expressions of a 6 , a 5 , a 1 , a 0 includes constant term 1 and they are common term q ′ 7 − 1 . Thus we can use q ′ 7 − 1 &#175; to substitute the q ′ 7 − 1 ⊕ 1 and convert Equation (34) into Equation (35), which simplify the expression and reduce the number of XOR gate.</p><p>{ a 7 = q ′ 7 − 1 ⊕ q ′ 3 − 1 ⊕ q ′ 2 − 1 a 6 = q ′ 7 − 1 &#175; ⊕ q ′ 6 − 1 ⊕ q ′ 5 − 1 ⊕ q ′ 4 − 1 a 5 = q ′ 7 − 1 &#175; ⊕ q ′ 2 − 1 a 4 = q ′ 7 − 1 ⊕ q ′ 4 − 1 ⊕ q ′ 1 − 1 ⊕ q ′ 0 − 1 a 3 = q ′ 2 − 1 ⊕ q ′ 1 − 1 ⊕ q ′ 0 − 1 a 2 = q ′ 6 − 1 ⊕ q ′ 5 − 1 ⊕ q ′ 4 − 1 ⊕ q ′ 3 − 1 ⊕ q ′ 2 − 1 ⊕ q ′ 0 − 1 a 1 = q ′ 7 − 1 &#175; ⊕ q ′ 0 − 1 a 0 = q ′ 7 − 1 &#175; ⊕ q ′ 6 − 1 ⊕ q ′ 2 − 1 ⊕ q ′ 1 − 1 ⊕ q ′ 0 − 1 (35)</p></sec><sec id="s4_4"><title>4.4. Example</title><p>To test the correctness of the output of each segment, taking the input 11110000 as an example and referring to equations (5), (21), (26), (28), (29) and (35), we calculate and obtain the operation results of each segment in <xref ref-type="fig" rid="fig1">Figure 1</xref> and the final S-box output as shown in <xref ref-type="table" rid="table2">Table 2</xref>. It is observed that the output of S-box of proposed S-box is consistent with the output of AES standard, which proves that the expression of each segment is correct.</p></sec></sec><sec id="s5"><title>5. Experiment Result and Performance Evaluation</title><p>In order to evaluate the hardware implementation performance of the proposed architecture, we modelled and simulated the proposed design using Verilog language and Modelsim respectively. Design Complier (DC) was employed to complete ASIC synthesis under TSMC 90nm CMOS Technology library.</p><table-wrap id="table2" ><label><xref ref-type="table" rid="table2">Table 2</xref></label><caption><title> The segmented calculation results of S-box in this paper and the comparison with AES standard output</title></caption><table><tbody><thead><tr><th align="center" valign="middle" >Step</th><th align="center" valign="middle" >q</th><th align="center" valign="middle" >q ′</th><th align="center" valign="middle" >e</th><th align="center" valign="middle" >y</th><th align="center" valign="middle" >q ′ − 1</th><th align="center" valign="middle" >a (the output of S-box)</th></tr></thead><tr><td align="center" valign="middle" >This work</td><td align="center" valign="middle" >11110000</td><td align="center" valign="middle" >01000001</td><td align="center" valign="middle" >1100</td><td align="center" valign="middle" >0101</td><td align="center" valign="middle" >00100111</td><td align="center" valign="middle" >10001100</td></tr><tr><td align="center" valign="middle" >Standard S-box</td><td align="center" valign="middle" >11110000</td><td align="center" valign="middle" >-</td><td align="center" valign="middle" >-</td><td align="center" valign="middle" >-</td><td align="center" valign="middle" >-</td><td align="center" valign="middle" >10001100</td></tr></tbody></table></table-wrap><p><xref ref-type="fig" rid="fig4">Figure 4</xref> shows the simulation results of two kinds of S-box. In <xref ref-type="fig" rid="fig4">Figure 4</xref>, s_box_1_out represents the output result of the standard AES S-box, and s_box is that of the S-box proposed in this paper. As shown in <xref ref-type="fig" rid="fig4">Figure 4</xref>, the output of the S-box in this paper is consistent with that of the standard S-box for different inputs, which proves that the scheme in this paper is correct.</p><p><xref ref-type="table" rid="table3">Table 3</xref> shows the DC synthesis results and the theoretical estimation results of Critical Path Delay (CPD). Note that the delay equivalent relationship between logic gates used to estimate CPD and equivalent CPD in <xref ref-type="table" rid="table3">Table 3</xref> refers to the standard in [<xref ref-type="bibr" rid="scirp.132892-ref13">13</xref>] . The specific equivalent relationship is listed in <xref ref-type="table" rid="table4">Table 4</xref>. Note that, in <xref ref-type="table" rid="table4">Table 4</xref>, XOR stands for two-input XOR gate, AND two-input AND gate, AND3X1 three-input AND gate, OR two-input OR gate, MUX two-input multiplexer.</p><p>According to the DC synthesis results in <xref ref-type="table" rid="table3">Table 3</xref>, we first compared the synthesis results of our proposed S-box with [<xref ref-type="bibr" rid="scirp.132892-ref16">16</xref>] synthesized using the same TSMC 90 nm CMOS standard cell library.</p><table-wrap id="table3" ><label><xref ref-type="table" rid="table3">Table 3</xref></label><caption><title> DC synthesis results of different S-boxes and theoretical estimation results of critical path delay</title></caption><table><tbody><thead><tr><th align="center" valign="middle" >S-box structure</th><th align="center" valign="middle" >Area (μm<sup>2</sup>)</th><th align="center" valign="middle" >Tech.</th><th align="center" valign="middle" >Frequency (Mhz)</th><th align="center" valign="middle" >Through-put (Gbps)</th><th align="center" valign="middle" >Hardware efficiency (Mbps/μm<sup>2</sup>)</th><th align="center" valign="middle" >The equivalent number of NAND (GE)</th><th align="center" valign="middle" >Critical path delay</th><th align="center" valign="middle" >Equivalent critical path delay</th><th align="center" valign="middle" >Time (ns)</th><th align="center" valign="middle" >GE*Time</th></tr></thead><tr><td align="center" valign="middle" >our design</td><td align="center" valign="middle" >1593.24</td><td align="center" valign="middle" >TSMC 90 nm</td><td align="center" valign="middle" >1041.67</td><td align="center" valign="middle" >8.333</td><td align="center" valign="middle" >5.230</td><td align="center" valign="middle" >565</td><td align="center" valign="middle" >15 XOR + 2 AND + 1 AND3X1 + 2 INV</td><td align="center" valign="middle" >51 NAND + 4 INV</td><td align="center" valign="middle" >0.96</td><td align="center" valign="middle" >542.40</td></tr><tr><td align="center" valign="middle" >[<xref ref-type="bibr" rid="scirp.132892-ref16">16</xref>]</td><td align="center" valign="middle" >2769.48</td><td align="center" valign="middle" >TSMC 90 nm</td><td align="center" valign="middle" >1204.82</td><td align="center" valign="middle" >9.639</td><td align="center" valign="middle" >3.480</td><td align="center" valign="middle" >981</td><td align="center" valign="middle" >19 XOR + 3 AND + 1 OR + 2 MUX</td><td align="center" valign="middle" >65 NAND + 8 INV</td><td align="center" valign="middle" >0.83</td><td align="center" valign="middle" >814.23</td></tr><tr><td align="center" valign="middle" >[<xref ref-type="bibr" rid="scirp.132892-ref14">14</xref>] (compact)</td><td align="center" valign="middle" >-</td><td align="center" valign="middle" >TSMC 65 nm</td><td align="center" valign="middle" >328.95</td><td align="center" valign="middle" >2.632</td><td align="center" valign="middle" >-</td><td align="center" valign="middle" >249</td><td align="center" valign="middle" >-</td><td align="center" valign="middle" >-</td><td align="center" valign="middle" >3.04</td><td align="center" valign="middle" >756.96</td></tr><tr><td align="center" valign="middle" >[<xref ref-type="bibr" rid="scirp.132892-ref20">20</xref>]</td><td align="center" valign="middle" >832.13</td><td align="center" valign="middle" >TSMC 40 nm</td><td align="center" valign="middle" >1250.00</td><td align="center" valign="middle" >10.000</td><td align="center" valign="middle" >12.017</td><td align="center" valign="middle" >1223</td><td align="center" valign="middle" >-</td><td align="center" valign="middle" >-</td><td align="center" valign="middle" >0.8</td><td align="center" valign="middle" >978.40</td></tr></tbody></table></table-wrap><table-wrap id="table4" ><label><xref ref-type="table" rid="table4">Table 4</xref></label><caption><title> The delay equivalent relationship</title></caption><table><tbody><thead><tr><th align="center" valign="middle" >Logic gate type</th><th align="center" valign="middle" >Equivalent to the number of AND + INV</th></tr></thead><tr><td align="center" valign="middle" >XOR</td><td align="center" valign="middle" >3 NAND</td></tr><tr><td align="center" valign="middle" >AND</td><td align="center" valign="middle" >1 NAND + 1 INV</td></tr><tr><td align="center" valign="middle" >AND3X1</td><td align="center" valign="middle" >4 NAND</td></tr><tr><td align="center" valign="middle" >OR</td><td align="center" valign="middle" >1 NAND</td></tr><tr><td align="center" valign="middle" >MUX</td><td align="center" valign="middle" >2 NAND + 2.5 INV</td></tr></tbody></table></table-wrap><p>The results indicate that the S-box implementation proposed in this paper only needs 1593.24 μm<sup>2</sup> area overhead. In comparison with the implementation of the pipeline architecture proposed in [<xref ref-type="bibr" rid="scirp.132892-ref16">16</xref>] , although the implementation in this paper reduces the frequency and throughput by approximately 13.54% and 13.55% respectively, the area overhead is reduced by about 42.47%, leading to an increase in hardware efficiency (throughput/area) by about 50.29%. Obviously, the scheme proposed in this paper offers significant advantages in terms of area overhead and hardware efficiency.</p><p>In addition, in terms of CPD, the S-box implementation proposed in this paper has a CPD of 15 XOR + 2 AND + 1 AND3X1 + 2 INV. The CPD is calculated based on Equations (5), (21), (26), (28), (29), (35) which is corresponding to five segments in <xref ref-type="fig" rid="fig1">Figure 1</xref> in Section 3. Specifically, the CPD is 3 XOR for Equation (5), 4 XOR + 1 AND + 1 INV for Equation (21), and 3 XOR + 1 AND3X1 + 1 INV for Equation (26) and (28) (calculated in parallel). Then the CPD of Equation (29) and (35) are 2 XOR + 1 AND and 3 XOR, respectively. Comparatively, the CPD in [<xref ref-type="bibr" rid="scirp.132892-ref16">16</xref>] is 19 XOR + 3 AND + 1 OR + 2 MUX. After being converted equivalently according to the relationship shown in <xref ref-type="table" rid="table4">Table 4</xref>, the CPD of this paper is 51 NAND + 4 INV, whereas that of [<xref ref-type="bibr" rid="scirp.132892-ref16">16</xref>] is 65 NAND + 8 INV. It is evident that the CPD of the S-box proposed in this paper saves the delay of 14 NAND and 4 INV logic gates compared with [<xref ref-type="bibr" rid="scirp.132892-ref16">16</xref>] . Even ignoring the difference in the number of INV logic gates, the CPD of the S-box in this paper is about 21.54% higher than that in [<xref ref-type="bibr" rid="scirp.132892-ref16">16</xref>] , which is a relatively valuable improvement. However, it should be noted that the DC synthesis results in [<xref ref-type="bibr" rid="scirp.132892-ref16">16</xref>] show that its working clock frequency is higher than that in this paper. This is mainly because the synthesis results given in [<xref ref-type="bibr" rid="scirp.132892-ref16">16</xref>] are for the S-box of 5-level pipeline architecture in which its clock frequency is determined by the CPD of some sub-stage, but not entire S-box.</p><p>Secondly, we compared our proposed implementation with [<xref ref-type="bibr" rid="scirp.132892-ref14">14</xref>] and [<xref ref-type="bibr" rid="scirp.132892-ref20">20</xref>] which were synthesized using TSMC 65 nm and 40 nm CMOS standard cell library respectively. For the convenience of comparison with related data in [<xref ref-type="bibr" rid="scirp.132892-ref14">14</xref>] , we calculated that the frequency (frequency = 1/Time) and throughput (throughput = 8 bit/Time) in [<xref ref-type="bibr" rid="scirp.132892-ref14">14</xref>] are approximately 328.95 Mhz and 2.632 Gbps respectively based on the Time given in [<xref ref-type="bibr" rid="scirp.132892-ref14">14</xref>] and made a comparison with corresponding data in this paper. The comparison results show that the Time of the proposed implementation in this paper is reduced by approximately 68.42% compared to [<xref ref-type="bibr" rid="scirp.132892-ref14">14</xref>] , which indicates that the speed of S-box implementation proposed in this paper significantly surpasses that reported in [<xref ref-type="bibr" rid="scirp.132892-ref14">14</xref>] . Furthermore, despite the larger area of the S-box proposed in this paper compared to [<xref ref-type="bibr" rid="scirp.132892-ref14">14</xref>] , the S-box in this paper exhibits a lower area-time product (GE*Time) reduced by approximately 28.34%. It implied that our design achieves a superior balance between area and speed.</p><p>Reference [<xref ref-type="bibr" rid="scirp.132892-ref20">20</xref>] is the latest known paper focusing on S-box implementation. To facilitate comparison, we first calculated that the equivalent GE in [<xref ref-type="bibr" rid="scirp.132892-ref20">20</xref>] is 1223 two-input NAND Gates (the equivalent GE under TSMC40 nm technology library = area under TSMC40 nm/0.68 where 0.68 is the area of the two-input NAND in the TSMC 40 nm technology library). The comparison results show that the S-box implementation proposed in this paper can save GE and the product of GE and Time by approximately 53.80% and 44.56% respectively and improve 80.59% hardware efficiency compared to that in [<xref ref-type="bibr" rid="scirp.132892-ref20">20</xref>] .</p><p>Overall, the S-box implementation proposed in this paper has obvious advantages over the existing schemes in terms of area overhead, critical path delay and hardware efficiency. It can provide favorable support for implementing efficient and compact AES S-box ASIC design.</p></sec><sec id="s6"><title>6. Conclusions and Future Work</title><p>Aiming at the shortcomings of low processing speed and computational complexity in multiplicative inversion over the finite field, this paper explores the optimization of AES S-box and proposes a segmented optimized S-box architecture by using the idea of calculating inverse elements in tower fields and combining with Karnaugh map simplification and IVB technique. This architecture was divided into three modules: an isomorphic mapping module, an inversion module in composite fields and a merged module of inverse isomorphism and affine transformation. In this way, we simplify the logic of the S-box implementation.</p><p>In the isomorphic mapping module, based on the concept of composite fields, we map elements in the finite field to the composite field, thus reducing the complexity of calculations. In the inversion module in composite fields, we use the recursive method to optimize the inversion part. The experimental results indicate that compared with the traditional algebraic method, our design effectively reduces the computational complexity and area overhead. In the merged module of inverse isomorphism and affine transformation, we combine the matrix of inverse isomorphic mapping and affine transformation into one to further simplify the logic expression of the S-box.</p><p>In conclusion, the segmented optimized S-box architecture proposed in this paper has the characteristics of small area, low critical path delay and high hardware efficiency which is very valuable for area-limited applications.</p><p>While we have made some progress in the implementation of S-boxes, we only consider the forward AES S-box in this paper because many operations in the block encryption algorithm only involve encryption. The inverse S-box and the forward S-box have many similar parts, so how to design the low-area inverse S-box and how to combine the S-box and the inverse S-box is the work we need to study in the future. At the same time, although the AES encryption algorithm has higher security performance, the security of AES hardware implementation is seriously threatened by the development of hardware attack technology. Therefore, to improve the security of the AES encryption algorithm, adding fault detection on the basis of the proposed S-box architecture is also our future work.</p></sec><sec id="s7"><title>Conflicts of Interest</title><p>The authors declare no conflicts of interest regarding the publication of this paper.</p></sec><sec id="s8"><title>Cite this paper</title><p>Wang, Y.W., Bin, S.N., Zhu, S.K. and Hu, X.T. (2024) A High Efficiency Hardware Implementation of S-Boxes Based on Composite Field for Advanced Encryption Standard. Journal of Computer and Communications, 12, 228-246. https://doi.org/10.4236/jcc.2024.124016</p></sec></body><back><ref-list><title>References</title><ref id="scirp.132892-ref1"><label>1</label><mixed-citation publication-type="other" xlink:type="simple">Xu, Y.T., Lyu, Z.G., Huang, Y.G. and Li, X.Y. (2020) Optimization and Implementation of AES Algorithm Based on STM32 MCU. &lt;i&gt;Process&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Automation&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Instrument&lt;/i&gt;&lt;i&gt;a&lt;/i&gt;&lt;i&gt;tion&lt;/i&gt;, 41, 56-60. &lt;br&gt;https://chn.oversea.cnki.net/KCMS/detail/detail.aspx?dbcode=CJFD&amp;dbname=CJFDLAST2020&amp;filename=ZDYB202007013&amp;uniplatform=OVERSEA&amp;v=FBrazSYzB-bBRjeM4cilrp85xrbI9lm56klGQJewY_FfxAjpFv1g49uZwQfYYS3u </mixed-citation></ref><ref id="scirp.132892-ref2"><label>2</label><mixed-citation publication-type="other" xlink:type="simple">Manjith, B.C. (2019) Improving Overall Parallelism in AES Accelerator Using BRAM and Multiple Input Blocks. 2019&lt;i&gt; &lt;/i&gt;&lt;i&gt;Innovations&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;in&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Power&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;and&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Advanced&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Computing&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Technologies&lt;/i&gt;&lt;i&gt; &lt;/i&gt;(&lt;i&gt;i&lt;/i&gt;-&lt;i&gt;PACT&lt;/i&gt;), Vellore, 22-23 March 2019, 1-5. &lt;br&gt;https://doi.org/10.1109/i-PACT44901.2019.8960016</mixed-citation></ref><ref id="scirp.132892-ref3"><label>3</label><mixed-citation publication-type="other" xlink:type="simple">Arul Murugan, C., Karthigaikumar, P. and Priya, S.S. (2020) FPGA Implementation of Hardware Architecture with AES Encryptor Using Sub-Pipelined S-Box Techniques for Compact Applications. &lt;i&gt;Automatika&lt;/i&gt;, 61, 682-693. &lt;br&gt;https://doi.org/10.1080/00051144.2020.1816388</mixed-citation></ref><ref id="scirp.132892-ref4"><label>4</label><mixed-citation publication-type="other" xlink:type="simple">Rachh, R.R. and Ananda Mohan, P.V. (2008) Implementation of AES S-Boxes Using Combinational Logic. 2008&lt;i&gt; &lt;/i&gt;&lt;i&gt;IEEE&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;International&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Symposium&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;on&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Circuits&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;and&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Sy&lt;/i&gt;&lt;i&gt;s&lt;/i&gt;&lt;i&gt;tems&lt;/i&gt;&lt;i&gt; &lt;/i&gt;(&lt;i&gt;ISCAS&lt;/i&gt;), Seattle, 18-21 May 2008, 3294-3297. &lt;br&gt;https://doi.org/10.1109/ISCAS.2008.4542162</mixed-citation></ref><ref id="scirp.132892-ref5"><label>5</label><mixed-citation publication-type="other" xlink:type="simple">Ahmad, N., Rezaul Hasanand, R. and Jubadi, W.M. (2010) Design of AES S-Box Using Combinational Logic Optimization. 2010&lt;i&gt; &lt;/i&gt;&lt;i&gt;IEEE&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Symposium&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;on&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Industrial&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Electronics&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;&amp;&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Applications&lt;/i&gt;&lt;i&gt; &lt;/i&gt;(&lt;i&gt;ISIEA&lt;/i&gt;), Penang, 3-5 October 2010, 696-699. &lt;br&gt;https://doi.org/10.1109/ISIEA.2010.5679375</mixed-citation></ref><ref id="scirp.132892-ref6"><label>6</label><mixed-citation publication-type="other" xlink:type="simple">Wang, Q., Liang, J. and Qi, Y. (2010) The Area Optimized Implementation of S-box in AES Algorithm. &lt;i&gt;Chinese&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Journal&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;of&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Electronics&lt;/i&gt;, 38, 939-942. &lt;br&gt;https://kns.cnki.net/kcms2/article/abstract?v=smPsKIJgVaAXklosraIEqnytl0tPMLltpr9WZoEcUceHoSuINcBb4nLePRzxH-SSJdJ5qxypin17TJWVPQy99V8N47WNPrJaAIT7SexfzEdyNjgiXFuNLuhitAQEjLJSuxZ3wNLE8p8=&amp;uniplatform=NZKPT&amp;language=CHS </mixed-citation></ref><ref id="scirp.132892-ref7"><label>7</label><mixed-citation publication-type="other" xlink:type="simple">Qin, X.C. and Li, S.G. (2014) An Expression Method to Implement S-Box and Inverse S-Box Substitution for AES Algorithm. &lt;i&gt;Microelectronics&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;&amp;&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Computer&lt;/i&gt;, 31, 112-115. &lt;br&gt;https://kns.cnki.net/kcms2/article/abstract?v=smPsKIJgVaAXklosraIEqnytl0tPMLltpr9WZoEcUceHoSuINcBb4nLePRzxH-SSJdJ5qxypin17TJWVPQy99V8N47WNPrJaAIT7SexfzEdyNjgiXFuNLuhitAQEjLJSuxZ3wNLE8p8=&amp;uniplatform=NZKPT&amp;language=CHS </mixed-citation></ref><ref id="scirp.132892-ref8"><label>8</label><mixed-citation publication-type="book" xlink:type="simple">Satoh, A., Morioka, S., Takano, K. and Munetoh, S. (2001) A Compact Rijndael Hardware Architecture with S-Box Optimization. In: Boyd, C., Ed., &lt;i&gt;ASIACRYPT&lt;/i&gt; 2001: &lt;i&gt;Advances in Cryptology&lt;/i&gt;&amp;#8212;&lt;i&gt;ASIACRYPT&lt;/i&gt; 2001, Springer, Berlin, 239-254. &lt;br&gt;https://doi.org/10.1007/3-540-45682-1_15</mixed-citation></ref><ref id="scirp.132892-ref9"><label>9</label><mixed-citation publication-type="book" xlink:type="simple">Canright, D. (2005) A Very Compact S-Box for AES.&lt;i&gt; &lt;/i&gt;In: Rao, J.R. and Sunar, B., Eds., &lt;i&gt;CHES&lt;/i&gt; 2005: &lt;i&gt;Cryptographic Hardware and Embedded Systems&lt;/i&gt;&amp;#8212;&lt;i&gt;CHES&lt;/i&gt; 2005, Springer, Berlin, 441-455. &lt;br&gt;https://doi.org/10.1007/11545262_32</mixed-citation></ref><ref id="scirp.132892-ref10"><label>10</label><mixed-citation publication-type="other" xlink:type="simple">Reyhani-Masoleh, A., Taha, M. and Ashmawy, D. (2018) Smashing the Implementation Records of AES S-Box. &lt;i&gt;IACR&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Transactions&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;on&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Cryptographic&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Hardware&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;and&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Embedded&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Systems&lt;/i&gt;, 2018, 298-336. &lt;br&gt;https://doi.org/10.46586/tches.v2018.i2.298-336</mixed-citation></ref><ref id="scirp.132892-ref11"><label>11</label><mixed-citation publication-type="other" xlink:type="simple">Ashmawy, D. and Reyhani-Masoleh, A. (2021) A Faster Hardware Implementation of the AES S-Box. 2021&lt;i&gt; &lt;/i&gt;&lt;i&gt;IEEE&lt;/i&gt;&lt;i&gt; &lt;/i&gt;28&lt;i&gt;th&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Symposium&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;on&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Computer&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Arithmetic&lt;/i&gt;&lt;i&gt; &lt;/i&gt;(&lt;i&gt;ARITH&lt;/i&gt;), Lyngby, 14-16 June 2021, 123-130. &lt;br&gt;https://doi.org/10.1109/ARITH51176.2021.00034</mixed-citation></ref><ref id="scirp.132892-ref12"><label>12</label><mixed-citation publication-type="other" xlink:type="simple">Qin, P.Y., Zhou, F., Wu, N. and Xian, F.C. (2021) A Compact Implementation of AES S-Box Based on Dual Basis. 2021&lt;i&gt; &lt;/i&gt;&lt;i&gt;IEEE&lt;/i&gt;&lt;i&gt; &lt;/i&gt;4&lt;i&gt;th&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;International&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Conference&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;on&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;E&lt;/i&gt;&lt;i&gt;le&lt;/i&gt;&lt;i&gt;c&lt;/i&gt;&lt;i&gt;tronics&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Technology&lt;/i&gt;&lt;i&gt; &lt;/i&gt;(&lt;i&gt;ICET&lt;/i&gt;), Chengdu, 7-10 May 2021, 118-122. &lt;br&gt;https://doi.org/10.1109/ICET51757.2021.9451103</mixed-citation></ref><ref id="scirp.132892-ref13"><label>13</label><mixed-citation publication-type="other" xlink:type="simple">Li, Y.J., Zhang, W.G., Ge, Y.D., Huang, Y.T. and Huo, S.S. (2023) Optimized Realization of AES-Like Algorithm S-Box.&lt;i&gt; Journal of Cryptologic Research&lt;/i&gt;, 10, 531-538. &lt;br&gt;https://chn.oversea.cnki.net/KCMS/detail/detail.aspx?dbcode=CJFD&amp;dbname=CJFDLAST2023&amp;filename=MMXB202303007&amp;uniplatform=OVERSEA&amp;v=3krAWpsgW0pQFgxPqPGHNXUu9KOVM3LR-yRj4uPmzaytoGewPl1MMY0QmJe5iVlK </mixed-citation></ref><ref id="scirp.132892-ref14"><label>14</label><mixed-citation publication-type="other" xlink:type="simple">Ueno, R., Homma, N., Nogami, Y. and Aoki, T. (2018) Highly Efficient &lt;i&gt;GF&lt;/i&gt;(2&lt;sup&gt;8&lt;/sup&gt;) Inversion Circuit Based on Hybrid GF Representations. &lt;i&gt;Journal&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;of&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Cryptographic&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;E&lt;/i&gt;&lt;i&gt;n&lt;/i&gt;&lt;i&gt;gineering&lt;/i&gt;, 9, 101-113. &lt;br&gt;https://doi.org/10.1007/s13389-018-0187-8</mixed-citation></ref><ref id="scirp.132892-ref15"><label>15</label><mixed-citation publication-type="other" xlink:type="simple">Reyhani-Masoleh, A., Taha, M. and Ashmawy, D. (2020) New Low-Area Designs for the AES Forward, Inverse and Combined S-Boxes.&lt;i&gt; &lt;/i&gt;&lt;i&gt;IEEE&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Transactions&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;on&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Co&lt;/i&gt;&lt;i&gt;m&lt;/i&gt;&lt;i&gt;puter&lt;/i&gt;&lt;i&gt;s&lt;/i&gt;, 69, 1757-1773. &lt;br&gt;https://doi.org/10.1109/TC.2019.2922601</mixed-citation></ref><ref id="scirp.132892-ref16"><label>16</label><mixed-citation publication-type="other" xlink:type="simple">Teng, Y.T., Chin, W.L., Chang, D.K., Chen, P.Y. and Chen, P.W. (2022) VLSI Architecture of S-Box with High Area Efficiency Based on Composite Field Arithmetic. &lt;i&gt;IEEE&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Access&lt;/i&gt;, 10, 2721-2728. &lt;br&gt;https://doi.org/10.1109/ACCESS.2021.3139040</mixed-citation></ref><ref id="scirp.132892-ref17"><label>17</label><mixed-citation publication-type="other" xlink:type="simple">Zhong, X.L. and Wu, X.C. (2023) Improved Scheme for AES S-Box and Its Hardware Design. &lt;i&gt;Application&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Research&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;of&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Computers&lt;/i&gt;, 40, 3784-3788. &lt;br&gt;https://chn.oversea.cnki.net/KCMS/detail/detail.aspx?dbcode=CJFD&amp;dbname=CJFDLAST2024&amp;filename=JSYJ202312041&amp;uniplatform=OVERSEA&amp;v=6V31X-ZMm4dw3aUv6LWSfloYqa4O0wQBBQfFsOG5q8ozVts-sEJtUdkPlBfClBfe </mixed-citation></ref><ref id="scirp.132892-ref18"><label>18</label><mixed-citation publication-type="other" xlink:type="simple">Shen, X.C. and Han, M. (2018) Improved S-box Based on Strict Avalanche Distance Criterion. &lt;i&gt;Microelectronics&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;&amp;&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Computer&lt;/i&gt;, 35, 92-96. &lt;br&gt;https://chn.oversea.cnki.net/KCMS/detail/detail.aspx?dbcode=CJFD&amp;dbname=CJFDLAST2018&amp;filename=WXYJ201806020&amp;uniplatform=OVERSEA&amp;v=y8jwcNYZOk4NEvpQNzq689lZkTI8P8tEKPKjl4d94PoJ4RAsb8iS50lWFfAulS1X </mixed-citation></ref><ref id="scirp.132892-ref19"><label>19</label><mixed-citation publication-type="other" xlink:type="simple">Nakashima, A., Ueno, R. and Homma, N. (2022) AES S-Box Hardware with Efficiency Improvement Based on Linear Mapping Optimization. &lt;i&gt;IEEE&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Transactions&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;on&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Circuits&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;and&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Systems&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;II&lt;/i&gt;:&lt;i&gt; &lt;/i&gt;&lt;i&gt;Express&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Briefs&lt;/i&gt;, 69, 3978-3982. &lt;br&gt;https://doi.org/10.1109/TCSII.2022.3185632</mixed-citation></ref><ref id="scirp.132892-ref20"><label>20</label><mixed-citation publication-type="other" xlink:type="simple">Lin, S.H., Lee, J.Y., Chuang, C.C., Lee, N.Y., Chen, P.Y. and Chin, W.L. (2023) Hardware Implementation of High-Throughput S-Box in AES for Information Security.&lt;i&gt; &lt;/i&gt;&lt;i&gt;IEEE&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Access&lt;/i&gt;, 11, 59049-59058. &lt;br&gt;https://doi.org/10.1109/ACCESS.2023.3284142</mixed-citation></ref><ref id="scirp.132892-ref21"><label>21</label><mixed-citation publication-type="other" xlink:type="simple">Maity, H., Kundu, P., Bhowmik, A. and Barik, A.K. (2023) Input Variable Bypass or IVB Technique for Logic Functions Simplification. 2023&lt;i&gt; &lt;/i&gt;&lt;i&gt;IEEE&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Devices&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;for&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Int&lt;/i&gt;&lt;i&gt;e&lt;/i&gt;&lt;i&gt;grated&lt;/i&gt;&lt;i&gt; &lt;/i&gt;&lt;i&gt;Circuit&lt;/i&gt;&lt;i&gt; &lt;/i&gt;(&lt;i&gt;DevIC&lt;/i&gt;), Kalyani, 7-8 April 2023, 1-4. &lt;br&gt;https://doi.org/10.1109/DevIC57758.2023.10135020</mixed-citation></ref><ref id="scirp.132892-ref22"><label>22</label><mixed-citation publication-type="other" xlink:type="simple">Mui, E.N., Custom, R. and Engineer, D. (2007) Practical Implementation of Rijndael S-Box Using Combinational Logic. Custom R&amp;D Engineer Texco Enterprise Pvt. Ltd. &lt;br&gt;http://www.geocities.ws/dariuskrail20/Practical_Implementation_of_Rijndael_S-Box_Using_Combinational_Logic.pdf</mixed-citation></ref></ref-list></back></article>