⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 skipjack_8cpp-source.html

📁 Crypto++是一个非常强大的密码学库,主要是功能全
💻 HTML
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"><title>Crypto++: skipjack.cpp Source File</title><link href="doxygen.css" rel="stylesheet" type="text/css"></head><body><!-- Generated by Doxygen 1.3.2 --><div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Compound&nbsp;List</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="namespacemembers.html">Namespace&nbsp;Members</a> | <a class="qindex" href="functions.html">Compound&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div><h1>skipjack.cpp</h1><div class="fragment"><pre>00001 <span class="comment">// skipjack.cpp - modified by Wei Dai from Paulo Barreto's skipjack32.c,</span>00002 <span class="comment">// which is public domain according to his web site.</span>00003 00004 <span class="preprocessor">#include "pch.h"</span>00005 00006 <span class="preprocessor">#ifndef CRYPTOPP_IMPORTS</span>00007 <span class="preprocessor"></span>00008 <span class="preprocessor">#include "<a class="code" href="skipjack_8h.html">skipjack.h</a>"</span>00009 00010 <span class="comment">/* </span>00011 <span class="comment"> *      Optimized implementation of SKIPJACK algorithm</span>00012 <span class="comment"> *</span>00013 <span class="comment"> *      originally written by Panu Rissanen &lt;bande@lut.fi&gt; 1998.06.24</span>00014 <span class="comment"> *      optimized by Mark Tillotson &lt;markt@chaos.org.uk&gt; 1998.06.25</span>00015 <span class="comment"> *      optimized by Paulo Barreto &lt;pbarreto@nw.com.br&gt; 1998.06.30</span>00016 <span class="comment"> */</span>00017 00018 NAMESPACE_BEGIN(CryptoPP)00019 00020 <span class="comment">/**</span>00021 <span class="comment"> * The F-table byte permutation (see description of the G-box permutation)</span>00022 <span class="comment"> */</span>00023 <span class="keyword">const</span> byte SKIPJACK::Base::fTable[256] = { 00024         0xa3,0xd7,0x09,0x83,0xf8,0x48,0xf6,0xf4,0xb3,0x21,0x15,0x78,0x99,0xb1,0xaf,0xf9,00025         0xe7,0x2d,0x4d,0x8a,0xce,0x4c,0xca,0x2e,0x52,0x95,0xd9,0x1e,0x4e,0x38,0x44,0x28,00026         0x0a,0xdf,0x02,0xa0,0x17,0xf1,0x60,0x68,0x12,0xb7,0x7a,0xc3,0xe9,0xfa,0x3d,0x53,00027         0x96,0x84,0x6b,0xba,0xf2,0x63,0x9a,0x19,0x7c,0xae,0xe5,0xf5,0xf7,0x16,0x6a,0xa2,00028         0x39,0xb6,0x7b,0x0f,0xc1,0x93,0x81,0x1b,0xee,0xb4,0x1a,0xea,0xd0,0x91,0x2f,0xb8,00029         0x55,0xb9,0xda,0x85,0x3f,0x41,0xbf,0xe0,0x5a,0x58,0x80,0x5f,0x66,0x0b,0xd8,0x90,00030         0x35,0xd5,0xc0,0xa7,0x33,0x06,0x65,0x69,0x45,0x00,0x94,0x56,0x6d,0x98,0x9b,0x76,00031         0x97,0xfc,0xb2,0xc2,0xb0,0xfe,0xdb,0x20,0xe1,0xeb,0xd6,0xe4,0xdd,0x47,0x4a,0x1d,00032         0x42,0xed,0x9e,0x6e,0x49,0x3c,0xcd,0x43,0x27,0xd2,0x07,0xd4,0xde,0xc7,0x67,0x18,00033         0x89,0xcb,0x30,0x1f,0x8d,0xc6,0x8f,0xaa,0xc8,0x74,0xdc,0xc9,0x5d,0x5c,0x31,0xa4,00034         0x70,0x88,0x61,0x2c,0x9f,0x0d,0x2b,0x87,0x50,0x82,0x54,0x64,0x26,0x7d,0x03,0x40,00035         0x34,0x4b,0x1c,0x73,0xd1,0xc4,0xfd,0x3b,0xcc,0xfb,0x7f,0xab,0xe6,0x3e,0x5b,0xa5,00036         0xad,0x04,0x23,0x9c,0x14,0x51,0x22,0xf0,0x29,0x79,0x71,0x7e,0xff,0x8c,0x0e,0xe2,00037         0x0c,0xef,0xbc,0x72,0x75,0x6f,0x37,0xa1,0xec,0xd3,0x8e,0x62,0x8b,0x86,0x10,0xe8,00038         0x08,0x77,0x11,0xbe,0x92,0x4f,0x24,0xc5,0x32,0x36,0x9d,0xcf,0xf3,0xa6,0xbb,0xac,00039         0x5e,0x6c,0xa9,0x13,0x57,0x25,0xb5,0xe3,0xbd,0xa8,0x3a,0x01,0x05,0x59,0x2a,0x4600040 };00041 <span class="comment"></span>00042 <span class="comment">/**</span>00043 <span class="comment"> * The key-dependent permutation G on V^16 is a four-round Feistel network.</span>00044 <span class="comment"> * The round function is a fixed byte-substitution table (permutation on V^8),</span>00045 <span class="comment"> * the F-table.  Each round of G incorporates a single byte from the key.</span>00046 <span class="comment"> */</span>00047 <span class="preprocessor">#define g(tab, w, i, j, k, l) \</span>00048 <span class="preprocessor">{ \</span>00049 <span class="preprocessor">        w ^= (word)tab[i][w &amp; 0xff] &lt;&lt; 8; \</span>00050 <span class="preprocessor">        w ^= (word)tab[j][w &gt;&gt;   8]; \</span>00051 <span class="preprocessor">        w ^= (word)tab[k][w &amp; 0xff] &lt;&lt; 8; \</span>00052 <span class="preprocessor">        w ^= (word)tab[l][w &gt;&gt;   8]; \</span>00053 <span class="preprocessor">}</span>00054 <span class="preprocessor"></span>00055 <span class="preprocessor">#define g0(tab, w) g(tab, w, 0, 1, 2, 3)</span>00056 <span class="preprocessor"></span><span class="preprocessor">#define g1(tab, w) g(tab, w, 4, 5, 6, 7)</span>00057 <span class="preprocessor"></span><span class="preprocessor">#define g2(tab, w) g(tab, w, 8, 9, 0, 1)</span>00058 <span class="preprocessor"></span><span class="preprocessor">#define g3(tab, w) g(tab, w, 2, 3, 4, 5)</span>00059 <span class="preprocessor"></span><span class="preprocessor">#define g4(tab, w) g(tab, w, 6, 7, 8, 9)</span>00060 <span class="preprocessor"></span><span class="comment"></span>00061 <span class="comment">/**</span>00062 <span class="comment"> * The inverse of the G permutation.</span>00063 <span class="comment"> */</span>00064 <span class="preprocessor">#define h(tab, w, i, j, k, l) \</span>00065 <span class="preprocessor">{ \</span>00066 <span class="preprocessor">        w ^= (word)tab[l][w &gt;&gt;   8]; \</span>00067 <span class="preprocessor">        w ^= (word)tab[k][w &amp; 0xff] &lt;&lt; 8; \</span>00068 <span class="preprocessor">        w ^= (word)tab[j][w &gt;&gt;   8]; \</span>00069 <span class="preprocessor">        w ^= (word)tab[i][w &amp; 0xff] &lt;&lt; 8; \</span>00070 <span class="preprocessor">}</span>00071 <span class="preprocessor"></span>00072 <span class="preprocessor">#define h0(tab, w) h(tab, w, 0, 1, 2, 3)</span>00073 <span class="preprocessor"></span><span class="preprocessor">#define h1(tab, w) h(tab, w, 4, 5, 6, 7)</span>00074 <span class="preprocessor"></span><span class="preprocessor">#define h2(tab, w) h(tab, w, 8, 9, 0, 1)</span>00075 <span class="preprocessor"></span><span class="preprocessor">#define h3(tab, w) h(tab, w, 2, 3, 4, 5)</span>00076 <span class="preprocessor"></span><span class="preprocessor">#define h4(tab, w) h(tab, w, 6, 7, 8, 9)</span>00077 <span class="preprocessor"></span><span class="comment"></span>00078 <span class="comment">/**</span>00079 <span class="comment"> * Preprocess a user key into a table to save an XOR at each F-table access.</span>00080 <span class="comment"> */</span>00081 <span class="keywordtype">void</span> SKIPJACK::Base::UncheckedSetKey(CipherDir dir, <span class="keyword">const</span> byte *key, <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> length)00082 {00083         AssertValidKeyLength(length);00084 00085         <span class="comment">/* tab[i][c] = fTable[c ^ key[i]] */</span>00086         <span class="keywordtype">int</span> i;00087         <span class="keywordflow">for</span> (i = 0; i &lt; 10; i++) {00088                 byte *t = tab[i], k = key[9-i];00089                 <span class="keywordtype">int</span> c;00090                 <span class="keywordflow">for</span> (c = 0; c &lt; 256; c++) {00091                         t[c] = fTable[c ^ k];00092                 }00093         }00094 }00095 00096 <span class="keyword">typedef</span> BlockGetAndPut&lt;word16, LittleEndian&gt; Block;00097 <span class="comment"></span>00098 <span class="comment">/**</span>00099 <span class="comment"> * Encrypt a single block of data.</span>00100 <span class="comment"> */</span>00101 <span class="keywordtype">void</span> SKIPJACK::Enc::ProcessAndXorBlock(<span class="keyword">const</span> byte *inBlock, <span class="keyword">const</span> byte *xorBlock, byte *outBlock)<span class="keyword"> const</span>00102 <span class="keyword"></span>{00103         word w1, w2, w3, w4;00104         Block::Get(inBlock)(w4)(w3)(w2)(w1);00105 00106         <span class="comment">/* stepping rule A: */</span>00107         g0(tab, w1); w4 ^= w1 ^ 1;00108         g1(tab, w4); w3 ^= w4 ^ 2;00109         g2(tab, w3); w2 ^= w3 ^ 3;00110         g3(tab, w2); w1 ^= w2 ^ 4;00111         g4(tab, w1); w4 ^= w1 ^ 5;00112         g0(tab, w4); w3 ^= w4 ^ 6;00113         g1(tab, w3); w2 ^= w3 ^ 7;00114         g2(tab, w2); w1 ^= w2 ^ 8;00115 00116         <span class="comment">/* stepping rule B: */</span>00117         w2 ^= w1 ^  9; g3(tab, w1);00118         w1 ^= w4 ^ 10; g4(tab, w4);00119         w4 ^= w3 ^ 11; g0(tab, w3);00120         w3 ^= w2 ^ 12; g1(tab, w2);00121         w2 ^= w1 ^ 13; g2(tab, w1);00122         w1 ^= w4 ^ 14; g3(tab, w4);00123         w4 ^= w3 ^ 15; g4(tab, w3);00124         w3 ^= w2 ^ 16; g0(tab, w2);00125 00126         <span class="comment">/* stepping rule A: */</span>00127         g1(tab, w1); w4 ^= w1 ^ 17;00128         g2(tab, w4); w3 ^= w4 ^ 18;00129         g3(tab, w3); w2 ^= w3 ^ 19;00130         g4(tab, w2); w1 ^= w2 ^ 20;00131         g0(tab, w1); w4 ^= w1 ^ 21;00132         g1(tab, w4); w3 ^= w4 ^ 22;00133         g2(tab, w3); w2 ^= w3 ^ 23;00134         g3(tab, w2); w1 ^= w2 ^ 24;00135 00136         <span class="comment">/* stepping rule B: */</span>00137         w2 ^= w1 ^ 25; g4(tab, w1);00138         w1 ^= w4 ^ 26; g0(tab, w4);00139         w4 ^= w3 ^ 27; g1(tab, w3);00140         w3 ^= w2 ^ 28; g2(tab, w2);00141         w2 ^= w1 ^ 29; g3(tab, w1);00142         w1 ^= w4 ^ 30; g4(tab, w4);00143         w4 ^= w3 ^ 31; g0(tab, w3);00144         w3 ^= w2 ^ 32; g1(tab, w2);00145 00146         Block::Put(xorBlock, outBlock)(w4)(w3)(w2)(w1);00147 }00148 <span class="comment"></span>00149 <span class="comment">/**</span>00150 <span class="comment"> * Decrypt a single block of data.</span>00151 <span class="comment"> */</span>00152 <span class="keywordtype">void</span> SKIPJACK::Dec::ProcessAndXorBlock(<span class="keyword">const</span> byte *inBlock, <span class="keyword">const</span> byte *xorBlock, byte *outBlock)<span class="keyword"> const</span>00153 <span class="keyword"></span>{00154         word w1, w2, w3, w4;00155         Block::Get(inBlock)(w4)(w3)(w2)(w1);00156 00157         <span class="comment">/* stepping rule A: */</span>00158         h1(tab, w2); w3 ^= w2 ^ 32;00159         h0(tab, w3); w4 ^= w3 ^ 31;00160         h4(tab, w4); w1 ^= w4 ^ 30;00161         h3(tab, w1); w2 ^= w1 ^ 29;00162         h2(tab, w2); w3 ^= w2 ^ 28;00163         h1(tab, w3); w4 ^= w3 ^ 27;00164         h0(tab, w4); w1 ^= w4 ^ 26;00165         h4(tab, w1); w2 ^= w1 ^ 25;00166 00167         <span class="comment">/* stepping rule B: */</span>00168         w1 ^= w2 ^ 24; h3(tab, w2);00169         w2 ^= w3 ^ 23; h2(tab, w3);00170         w3 ^= w4 ^ 22; h1(tab, w4);00171         w4 ^= w1 ^ 21; h0(tab, w1);00172         w1 ^= w2 ^ 20; h4(tab, w2);00173         w2 ^= w3 ^ 19; h3(tab, w3);00174         w3 ^= w4 ^ 18; h2(tab, w4);00175         w4 ^= w1 ^ 17; h1(tab, w1);00176 00177         <span class="comment">/* stepping rule A: */</span>00178         h0(tab, w2); w3 ^= w2 ^ 16;00179         h4(tab, w3); w4 ^= w3 ^ 15;00180         h3(tab, w4); w1 ^= w4 ^ 14;00181         h2(tab, w1); w2 ^= w1 ^ 13;00182         h1(tab, w2); w3 ^= w2 ^ 12;00183         h0(tab, w3); w4 ^= w3 ^ 11;00184         h4(tab, w4); w1 ^= w4 ^ 10;00185         h3(tab, w1); w2 ^= w1 ^  9;00186 00187         <span class="comment">/* stepping rule B: */</span>00188         w1 ^= w2 ^ 8; h2(tab, w2);00189         w2 ^= w3 ^ 7; h1(tab, w3);00190         w3 ^= w4 ^ 6; h0(tab, w4);00191         w4 ^= w1 ^ 5; h4(tab, w1);00192         w1 ^= w2 ^ 4; h3(tab, w2);00193         w2 ^= w3 ^ 3; h2(tab, w3);00194         w3 ^= w4 ^ 2; h1(tab, w4);00195         w4 ^= w1 ^ 1; h0(tab, w1);00196 00197         Block::Put(xorBlock, outBlock)(w4)(w3)(w2)(w1);00198 }00199 00200 NAMESPACE_END00201 00202 <span class="preprocessor">#endif</span></pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Jul 8 23:34:25 2003 for Crypto++ by<a href="http://www.doxygen.org/index.html"><img src="doxygen.png" alt="doxygen" align="middle" border=0 > </a>1.3.2 </small></address></body></html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -