swfalg.c
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:14k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /*
  2.  * The contents of this file are subject to the Mozilla Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/MPL/
  6.  * 
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  * 
  12.  * The Original Code is the Netscape security libraries.
  13.  * 
  14.  * The Initial Developer of the Original Code is Netscape
  15.  * Communications Corporation.  Portions created by Netscape are 
  16.  * Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  17.  * Rights Reserved.
  18.  * 
  19.  * Contributor(s):
  20.  * 
  21.  * Alternatively, the contents of this file may be used under the
  22.  * terms of the GNU General Public License Version 2 or later (the
  23.  * "GPL"), in which case the provisions of the GPL are applicable 
  24.  * instead of those above.  If you wish to allow use of your 
  25.  * version of this file only under the terms of the GPL and not to
  26.  * allow others to use your version of this file under the MPL,
  27.  * indicate your decision by deleting the provisions above and
  28.  * replace them with the notice and other provisions required by
  29.  * the GPL.  If you do not delete the provisions above, a recipient
  30.  * may use your version of this file under either the MPL or the
  31.  * GPL.
  32.  */
  33. /*
  34.  * Software implementation of FORTEZZA skipjack primatives
  35.  */
  36. #include "maci.h"
  37. #include "seccomon.h"
  38. #include "swforti.h" 
  39. /*
  40.  * Xor the IV into the plaintext buffer either just before encryption, or
  41.  * just after decryption.
  42.  */
  43. static void
  44. fort_XorIV(unsigned char *obuffer, unsigned char *buffer, unsigned char *iv) {
  45.     int i;
  46. #ifdef USE_INT32
  47.     if ((buffer & 0x3) == 0) && ((iv & 0x3) == 0)) {
  48. int32 *ibuffer = (int32 *)buffer;
  49. int32 *iobuffer = (int32 *)obuffer;
  50. int32 *iiv = (int32 *)iv;
  51. iobuffer[0] = ibuffer[0] ^ iiv[0];
  52. iobuffer[1] = ibuffer[1] ^ iiv[1];
  53. return;
  54.     }
  55. #endif
  56.     for (i=0; i < SKIPJACK_BLOCK_SIZE; i++) {
  57. obuffer[i] = buffer[i] ^ iv[i];
  58.     }
  59. }
  60. /* the F-table for Skipjack */
  61. unsigned char F[256] = { 
  62.     0xa3, 0xd7, 0x09, 0x83, 0xf8, 0x48, 0xf6, 0xf4,
  63.     0xb3, 0x21, 0x15, 0x78, 0x99, 0xb1, 0xaf, 0xf9,
  64.     0xe7, 0x2d, 0x4d, 0x8a, 0xce, 0x4c, 0xca, 0x2e,
  65.     0x52, 0x95, 0xd9, 0x1e, 0x4e, 0x38, 0x44, 0x28,
  66.     0x0a, 0xdf, 0x02, 0xa0, 0x17, 0xf1, 0x60, 0x68,
  67.     0x12, 0xb7, 0x7a, 0xc3, 0xe9, 0xfa, 0x3d, 0x53,
  68.     0x96, 0x84, 0x6b, 0xba, 0xf2, 0x63, 0x9a, 0x19,
  69.     0x7c, 0xae, 0xe5, 0xf5, 0xf7, 0x16, 0x6a, 0xa2,
  70.     0x39, 0xb6, 0x7b, 0x0f, 0xc1, 0x93, 0x81, 0x1b,
  71.     0xee, 0xb4, 0x1a, 0xea, 0xd0, 0x91, 0x2f, 0xb8,
  72.     0x55, 0xb9, 0xda, 0x85, 0x3f, 0x41, 0xbf, 0xe0,
  73.     0x5a, 0x58, 0x80, 0x5f, 0x66, 0x0b, 0xd8, 0x90,
  74.     0x35, 0xd5, 0xc0, 0xa7, 0x33, 0x06, 0x65, 0x69,
  75.     0x45, 0x00, 0x94, 0x56, 0x6d, 0x98, 0x9b, 0x76,
  76.     0x97, 0xfc, 0xb2, 0xc2, 0xb0, 0xfe, 0xdb, 0x20,
  77.     0xe1, 0xeb, 0xd6, 0xe4, 0xdd, 0x47, 0x4a, 0x1d,
  78.     0x42, 0xed, 0x9e, 0x6e, 0x49, 0x3c, 0xcd, 0x43,
  79.     0x27, 0xd2, 0x07, 0xd4, 0xde, 0xc7, 0x67, 0x18,
  80.     0x89, 0xcb, 0x30, 0x1f, 0x8d, 0xc6, 0x8f, 0xaa,
  81.     0xc8, 0x74, 0xdc, 0xc9, 0x5d, 0x5c, 0x31, 0xa4,
  82.     0x70, 0x88, 0x61, 0x2c, 0x9f, 0x0d, 0x2b, 0x87,
  83.     0x50, 0x82, 0x54, 0x64, 0x26, 0x7d, 0x03, 0x40,
  84.     0x34, 0x4b, 0x1c, 0x73, 0xd1, 0xc4, 0xfd, 0x3b,
  85.     0xcc, 0xfb, 0x7f, 0xab, 0xe6, 0x3e, 0x5b, 0xa5,
  86.     0xad, 0x04, 0x23, 0x9c, 0x14, 0x51, 0x22, 0xf0,
  87.     0x29, 0x79, 0x71, 0x7e, 0xff, 0x8c, 0x0e, 0xe2,
  88.     0x0c, 0xef, 0xbc, 0x72, 0x75, 0x6f, 0x37, 0xa1,
  89.     0xec, 0xd3, 0x8e, 0x62, 0x8b, 0x86, 0x10, 0xe8,
  90.     0x08, 0x77, 0x11, 0xbe, 0x92, 0x4f, 0x24, 0xc5,
  91.     0x32, 0x36, 0x9d, 0xcf, 0xf3, 0xa6, 0xbb, 0xac,
  92.     0x5e, 0x6c, 0xa9, 0x13, 0x57, 0x25, 0xb5, 0xe3,
  93.     0xbd, 0xa8, 0x3a, 0x01, 0x05, 0x59, 0x2a, 0x46
  94. };
  95. typedef unsigned char fort_keysched[32*4];
  96. /* do the key schedule work once for efficency */
  97. static void
  98. fort_skipKeySchedule(FORTSkipjackKeyPtr key,fort_keysched keysched)
  99. {
  100.     unsigned char *keyptr = key;
  101.     unsigned char *first = keyptr +sizeof(FORTSkipjackKey)-1;
  102.     int i;
  103.     keyptr = first;
  104.     for (i=0; i < (32*4); i++) {
  105. keysched[i] = *keyptr--;
  106. if (keyptr < key) keyptr = first;
  107.     }
  108.     return;
  109. }
  110. static void
  111. fort_clearShedule(fort_keysched keysched)
  112. {
  113.     PORT_Memset(keysched, 0, sizeof(keysched));
  114. }
  115. static unsigned int 
  116. G(fort_keysched cv, int k, unsigned int wordIn)
  117. {
  118.     unsigned char g1, g2, g3, g4, g5, g6;
  119.     g1 = (unsigned char) (wordIn >> 8) & 0xff;
  120.     g2 = (unsigned char) wordIn & 0xff;
  121.     g3 = F[g2^cv[4*k]]^g1;
  122.     g4 = F[g3^cv[4*k+1]]^g2;
  123.     g5 = F[g4^cv[4*k+2]]^g3;
  124.     g6 = F[g5^cv[4*k+3]]^g4;
  125.     return ((g5<<8)+g6);
  126. }
  127. static unsigned int 
  128. G1(fort_keysched cv, int k, unsigned int wordIn)
  129. {
  130.     unsigned char g1, g2, g3, g4, g5, g6;
  131.     g5 = (unsigned char) (wordIn >> 8) & 0xff;
  132.     g6 = (unsigned char) wordIn & 0xff;
  133.     g4 = F[g5^cv[4*k+3]]^g6;
  134.     g3 = F[g4^cv[4*k+2]]^g5;
  135.     g2 = F[g3^cv[4*k+1]]^g4;
  136.     g1 = F[g2^cv[4*k]]^g3;
  137.     return ((g1<<8)+g2);
  138. }
  139. static void 
  140. ruleA(fort_keysched cv,int round,unsigned int *w)
  141. {
  142.     unsigned int w4;
  143.     int i;
  144.     for(i=0; i<8; i++) {
  145. int k = round*16+i;
  146. int counter = k+1;
  147. w4 = w[4];
  148. w[4] = w[3];
  149. w[3] = w[2];
  150. w[2] = G(cv,k,w[1]);
  151. w[1] = G(cv,k,w[1]) ^ w4 ^ counter;
  152.     }
  153.     return;
  154. }
  155. static void 
  156. ruleB(fort_keysched cv,int round,unsigned int *w)
  157. {
  158.     unsigned int w4;
  159.     int i;
  160.     for(i=0; i<8; i++) {
  161. int k = round*16+i+8;
  162. int counter = k+1;
  163. w4 = w[4];
  164. w[4] = w[3];
  165. w[3] = w[1] ^ w[2] ^ counter; 
  166. w[2] = G(cv,k,w[1]);
  167. w[1] = w4;
  168.     }
  169.     return;
  170. }
  171. static void 
  172. ruleA1(fort_keysched cv,int round,unsigned int *w)
  173. {
  174.     unsigned int w4;
  175.     int i;
  176.     for(i=7; i>=0; i--) {
  177. int k = round*16+i;
  178. int counter = k+1;
  179. w4 = w[4];
  180. w[4] = w[1] ^ w[2] ^ counter;
  181. w[1] = G1(cv,k,w[2]);
  182. w[2] = w[3];
  183. w[3] = w4;
  184.     }
  185.     return;
  186. }
  187. static void 
  188. ruleB1(fort_keysched cv,int round,unsigned int *w)
  189. {
  190.     unsigned int w4;
  191.     int i;
  192.     for(i=7; i>=0; i--) {
  193. int k = round*16+i+8;
  194. int counter = k+1;
  195. w4 = w[4];
  196. w[4] = w[1];
  197. w[1] = G1(cv,k,w[2]);
  198. w[2] = G1(cv,k,w[2]) ^ w[3] ^ counter; 
  199. w[3] = w4;
  200.     }
  201.     return;
  202. }
  203. static void 
  204. fort_doskipD(fort_keysched cv,unsigned char *cipherIn,
  205.  unsigned char *plainOut) {
  206.   unsigned int w[5]; /* ignore w[0] so the code matches the doc */
  207.   /* initial byte swap */
  208.   w[1]=(cipherIn[7]<<8)+cipherIn[6];
  209.   w[2]=(cipherIn[5]<<8)+cipherIn[4];
  210.   w[3]=(cipherIn[3]<<8)+cipherIn[2];
  211.   w[4]=(cipherIn[1]<<8)+cipherIn[0];
  212.   ruleB1(cv,1,w);
  213.   ruleA1(cv,1,w);
  214.   ruleB1(cv,0,w);
  215.   ruleA1(cv,0,w);
  216.   /* final byte swap */
  217.   plainOut[0] = w[4] & 0xff;
  218.   plainOut[1] = (w[4] >> 8) & 0xff;
  219.   plainOut[2] = w[3] & 0xff;
  220.   plainOut[3] = (w[3] >> 8) & 0xff;
  221.   plainOut[4] = w[2] & 0xff;
  222.   plainOut[5] = (w[2] >> 8) & 0xff;
  223.   plainOut[6] = w[1] & 0xff;
  224.   plainOut[7] = (w[1] >> 8) & 0xff;
  225.   return;
  226. }
  227. static void 
  228. fort_doskipE(fort_keysched cv,unsigned char *cipherIn,
  229.  unsigned char *plainOut) {
  230.   unsigned int w[5]; /* ignore w[0] so the code matches the doc */
  231.   /* initial byte swap */
  232.   w[1]=(cipherIn[7]<<8)+cipherIn[6];
  233.   w[2]=(cipherIn[5]<<8)+cipherIn[4];
  234.   w[3]=(cipherIn[3]<<8)+cipherIn[2];
  235.   w[4]=(cipherIn[1]<<8)+cipherIn[0];
  236.   ruleA(cv,0,w);
  237.   ruleB(cv,0,w);
  238.   ruleA(cv,1,w);
  239.   ruleB(cv,1,w);
  240.   /* final byte swap */
  241.   plainOut[0] = w[4] & 0xff;
  242.   plainOut[1] = (w[4] >> 8) & 0xff;
  243.   plainOut[2] = w[3] & 0xff;
  244.   plainOut[3] = (w[3] >> 8) & 0xff;
  245.   plainOut[4] = w[2] & 0xff;
  246.   plainOut[5] = (w[2] >> 8) & 0xff;
  247.   plainOut[6] = w[1] & 0xff;
  248.   plainOut[7] = (w[1] >> 8) & 0xff;
  249.   return;
  250. }
  251. /* Checksums are calculated by encrypted a fixed string with the key, then
  252.  * taking 16 bytes of the result from the block */
  253. static int
  254. fort_CalcKeyChecksum(FORTSkipjackKeyPtr key, unsigned char *sum) {
  255.     unsigned char ckdata[8] = {
  256.  0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55 };
  257.     unsigned char ckres[8];
  258.     fort_keysched keysched;
  259.     fort_skipKeySchedule(key,keysched);
  260.     fort_doskipE(keysched,ckdata,ckres);
  261.     fort_clearShedule(keysched);
  262.     PORT_Memcpy(sum,&ckres[1],2);
  263.     return CI_OK;
  264. }
  265. /* These function actually implements skipjack CBC Decrypt */
  266. int
  267. fort_skipjackDecrypt(FORTSkipjackKeyPtr key, unsigned char *iv, 
  268. unsigned long size, unsigned char *cipherIn, 
  269. unsigned char *plainOut) {
  270.     unsigned char ivdata1[SKIPJACK_BLOCK_SIZE];
  271.     unsigned char ivdata2[SKIPJACK_BLOCK_SIZE];
  272.     unsigned char *lastiv, *nextiv, *tmpiv;
  273.     fort_keysched keysched;
  274.     /* do the key schedule work once for efficency */
  275.     fort_skipKeySchedule(key,keysched);
  276.     /* As we decrypt, we need to save the last block so that we can
  277.      * Xor it out of decrypted text to get the real plain text. We actually
  278.      * have to save it because cipherIn and plainOut may point to the same
  279.      * buffer. */
  280.     lastiv =ivdata1;
  281.     nextiv = ivdata2;
  282.     PORT_Memcpy(lastiv,iv,SKIPJACK_BLOCK_SIZE);
  283.     while (size >= SKIPJACK_BLOCK_SIZE) {
  284. /* save the IV for the next block */
  285. PORT_Memcpy(nextiv,cipherIn,SKIPJACK_BLOCK_SIZE);
  286.     fort_doskipD(keysched,cipherIn,plainOut);
  287. /* xor out the last IV */
  288. fort_XorIV(plainOut,plainOut,lastiv);
  289. /* swap the IV buffers */
  290. tmpiv = lastiv;
  291. lastiv = nextiv;
  292. nextiv =tmpiv;
  293. /* increment the loop pointers... be sure to get the input, output,
  294.  * and size (decrement) each fortdoskipD operates on an entire block*/
  295. cipherIn += SKIPJACK_BLOCK_SIZE;
  296. plainOut += SKIPJACK_BLOCK_SIZE;
  297. size -= SKIPJACK_BLOCK_SIZE;
  298.     }
  299.     fort_clearShedule(keysched); /* don't leave the key lying around the stack*/
  300.     if (size != 0) return CI_INV_SIZE;
  301.     return CI_OK;
  302. }
  303. /* These function actually implements skipjack CBC Encrypt */
  304. int
  305. fort_skipjackEncrypt(FORTSkipjackKeyPtr key, unsigned char *iv, 
  306. unsigned long size, unsigned char *plainIn, 
  307. unsigned char *cipherOut) {
  308.     unsigned char *tmpiv;
  309.     fort_keysched keysched;
  310.     unsigned char plain[SKIPJACK_BLOCK_SIZE];
  311.     fort_skipKeySchedule(key,keysched);
  312.     tmpiv = iv;
  313.     while (size >= SKIPJACK_BLOCK_SIZE) {
  314. /* We Xor into a temp buffer because we don't want to modify plainIn,
  315.  * doing so may make the caller very unhappy:). */
  316. fort_XorIV(plain,plainIn,tmpiv);
  317.     fort_doskipE(keysched,plain,cipherOut);
  318. tmpiv = cipherOut;
  319. cipherOut += SKIPJACK_BLOCK_SIZE;
  320. plainIn += SKIPJACK_BLOCK_SIZE;
  321. size -= SKIPJACK_BLOCK_SIZE;
  322.     }
  323.     fort_clearShedule(keysched); /* don't leave the key lying around the stack*/
  324.     if (size != 0) return CI_INV_SIZE;
  325.     return CI_OK;
  326. }
  327.    
  328. /*
  329.  * unwrap is used for key generation and mixing
  330.  */
  331. int
  332. fort_skipjackUnwrap(FORTSkipjackKeyPtr key,unsigned long len, 
  333. unsigned char *cipherIn, unsigned char *plainOut) {
  334.     unsigned char low[10];
  335.     fort_keysched keysched;
  336.     int i,ret;
  337.     /* unwrap can only unwrap 80 bit symetric keys and 160 private keys 
  338.      * sometimes these values have checksums. When they do, we should verify
  339.      * those checksums. */
  340.     switch (len) {
  341.     case 20: /* private key */
  342.     case 24:   /* private key with checksum */
  343. ret = fort_skipjackUnwrap(key,len/2,cipherIn,plainOut);
  344. if (ret != CI_OK) return ret;
  345. ret = fort_skipjackUnwrap(key,len/2,&cipherIn[len/2],low);
  346. /* unmunge the low word */
  347. for (i=0; i < 10; i++) {
  348.     low[i] = low[i] ^ plainOut[i];
  349. }
  350. /* the unwrap will fail above because the checkword is on
  351.  * low, not low ^ high.
  352.  */
  353. if (ret == CI_CHECKWORD_FAIL) {
  354.     unsigned char checksum[2];
  355.             ret = fort_CalcKeyChecksum(low,checksum);
  356.     if (ret != CI_OK) return ret;
  357.     if (PORT_Memcmp(checksum,&cipherIn[len-2],2) != 0) {
  358. return CI_CHECKWORD_FAIL;
  359.     }
  360. }
  361. if (ret != CI_OK) return ret;
  362. /* re-order the low word */
  363. PORT_Memcpy(&plainOut[10],&low[8],2);
  364. PORT_Memcpy(&plainOut[12],&low[0],8);
  365. return CI_OK;
  366.     case 10: /* 80 bit skipjack key */
  367.     case 12: /* 80 bit skipjack key with checksum */
  368. fort_skipKeySchedule(key,keysched);
  369. fort_doskipD(keysched,cipherIn,plainOut);
  370. plainOut[8] = cipherIn[8] ^ plainOut[0];
  371. plainOut[9] = cipherIn[9] ^ plainOut[1];
  372. fort_doskipD(keysched,plainOut,plainOut);
  373. fort_clearShedule(keysched); 
  374. /* if we have a checkum, verify it */
  375. if (len == 12) {
  376.     unsigned char checksum[2];
  377.             ret = fort_CalcKeyChecksum(plainOut,checksum);
  378.     if (ret != CI_OK) return ret;
  379.     if (PORT_Memcmp(checksum,&cipherIn[10],2) != 0) {
  380. return CI_CHECKWORD_FAIL;
  381.     }
  382.         }
  383. return CI_OK;
  384.     default:
  385. break;
  386.     }
  387.     return CI_INV_SIZE;
  388. }
  389. /*
  390.  * unwrap is used for key generation and mixing
  391.  */
  392. int
  393. fort_skipjackWrap(FORTSkipjackKeyPtr key,unsigned long len, 
  394. unsigned char *plainIn, unsigned char *cipherOut) {
  395.     unsigned char low[10];
  396.     unsigned char checksum[2];
  397.     fort_keysched keysched;
  398.     int i,ret;
  399.     /* NOTE: length refers to the target in the case of wrap */
  400.     /* Wrap can only Wrap 80 bit symetric keys and 160 private keys 
  401.      * sometimes these values have checksums. When they do, we should verify
  402.      * those checksums. */
  403.     switch (len) {
  404.     case 20: /* private key */
  405.     case 24:   /* private key with checksum */
  406. /* re-order the low word */
  407. PORT_Memcpy(&low[8],&plainIn[10],2);
  408. PORT_Memcpy(&low[0],&plainIn[12],8);
  409. if (len == 24) {
  410.             ret = fort_CalcKeyChecksum(low,checksum);
  411.     if (ret != CI_OK) return ret;
  412. }
  413. /* munge the low word */
  414. for (i=0; i < 10; i++) {
  415.     low[i] = low[i] ^ plainIn[i];
  416. }
  417. ret = fort_skipjackWrap(key,len/2,plainIn,cipherOut);
  418. ret = fort_skipjackWrap(key,len/2,low,&cipherOut[len/2]);
  419. if (len == 24) {
  420.     PORT_Memcpy(&cipherOut[len - 2], checksum, sizeof(checksum));
  421. }
  422. return CI_OK;
  423.     case 10: /* 80 bit skipjack key */
  424.     case 12: /* 80 bit skipjack key with checksum */
  425. fort_skipKeySchedule(key,keysched);
  426. fort_doskipE(keysched,plainIn,cipherOut);
  427. cipherOut[8] = plainIn[8] ^ cipherOut[0];
  428. cipherOut[9] = plainIn[9] ^ cipherOut[1];
  429. fort_doskipE(keysched,cipherOut,cipherOut);
  430. fort_clearShedule(keysched); 
  431. /* if we need a checkum, get it */
  432. if (len == 12) {
  433.             ret = fort_CalcKeyChecksum(plainIn,&cipherOut[10]);
  434.     if (ret != CI_OK) return ret;
  435.         }
  436. return CI_OK;
  437.     default:
  438. break;
  439.     }
  440.     return CI_INV_SIZE;
  441. }