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

CA认证

开发平台:

WINDOWS

  1. /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil -*- */
  2. /*
  3.  * Functions and types used by https servers to send (download) pre-encrypted 
  4.  * files over SSL connections that use Fortezza ciphersuites.
  5.  *
  6.  * The contents of this file are subject to the Mozilla Public
  7.  * License Version 1.1 (the "License"); you may not use this file
  8.  * except in compliance with the License. You may obtain a copy of
  9.  * the License at http://www.mozilla.org/MPL/
  10.  * 
  11.  * Software distributed under the License is distributed on an "AS
  12.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  13.  * implied. See the License for the specific language governing
  14.  * rights and limitations under the License.
  15.  * 
  16.  * The Original Code is the Netscape security libraries.
  17.  * 
  18.  * The Initial Developer of the Original Code is Netscape
  19.  * Communications Corporation.  Portions created by Netscape are 
  20.  * Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  21.  * Rights Reserved.
  22.  * 
  23.  * Contributor(s):
  24.  * 
  25.  * Alternatively, the contents of this file may be used under the
  26.  * terms of the GNU General Public License Version 2 or later (the
  27.  * "GPL"), in which case the provisions of the GPL are applicable 
  28.  * instead of those above.  If you wish to allow use of your 
  29.  * version of this file only under the terms of the GPL and not to
  30.  * allow others to use your version of this file under the MPL,
  31.  * indicate your decision by deleting the provisions above and
  32.  * replace them with the notice and other provisions required by
  33.  * the GPL.  If you do not delete the provisions above, a recipient
  34.  * may use your version of this file under either the MPL or the
  35.  * GPL.
  36.  *
  37.  * $Id: preenc.h,v 1.1 2000/03/31 19:32:57 relyea%netscape.com Exp $
  38.  */
  39. #include "seccomon.h"
  40. #include "prio.h"
  41. typedef struct PEHeaderStr PEHeader;
  42. #define PE_MIME_TYPE "application/pre-encrypted"
  43. /*
  44.  * unencrypted header. The 'top' half of this header is generic. The union
  45.  * is type specific, and may include bulk cipher type information
  46.  * (Fortezza supports only Fortezza Bulk encryption). Only fortezza 
  47.  * pre-encrypted is defined.
  48.  */
  49. typedef struct PEFortezzaHeaderStr PEFortezzaHeader;
  50. typedef struct PEFortezzaGeneratedHeaderStr PEFortezzaGeneratedHeader;
  51. typedef struct PEFixedKeyHeaderStr PEFixedKeyHeader;
  52. typedef struct PERSAKeyHeaderStr PERSAKeyHeader;
  53. struct PEFortezzaHeaderStr {
  54.     unsigned char key[12];      /* Ks wrapped MEK */
  55.     unsigned char iv[24];       /* iv for this MEK */
  56.     unsigned char hash[20];     /* SHA hash of file */
  57.     unsigned char serial[8];    /* serial number of the card that owns
  58.                                      * Ks */
  59. };
  60. struct PEFortezzaGeneratedHeaderStr {
  61.     unsigned char key[12];      /* TEK wrapped MEK */
  62.     unsigned char iv[24];       /* iv for this MEK */
  63.     unsigned char hash[20];     /* SHA hash of file */
  64.     unsigned char Ra[128];      /* RA to generate TEK */
  65.     unsigned char Y[128];       /* Y to generate TEK */
  66. };
  67. struct PEFixedKeyHeaderStr {
  68.     unsigned char pkcs11Mech[4];  /* Symetric key operation */
  69.     unsigned char labelLen[2];   /* length of the token label */
  70.     unsigned char keyIDLen[2];   /* length of the token Key ID */
  71.     unsigned char ivLen[2];   /* length of IV */
  72.     unsigned char keyLen[2];   /* length of key (DES3_ECB encrypted) */
  73.     unsigned char data[1];   /* start of data */
  74. };
  75. struct PERSAKeyHeaderStr {
  76.     unsigned char pkcs11Mech[4];  /* Symetric key operation */
  77.     unsigned char issuerLen[2];   /* length of cert issuer */
  78.     unsigned char serialLen[2];   /* length of the cert serial */
  79.     unsigned char ivLen[2];   /* length of IV */
  80.     unsigned char keyLen[2];   /* length of key (RSA encrypted) */
  81.     unsigned char data[1];   /* start of data */
  82. };
  83. /* macros to get at the variable length data fields */
  84. #define PEFIXED_Label(header) (header->data)
  85. #define PEFIXED_KeyID(header) (&header->data[GetInt2(header->labelLen)])
  86. #define PEFIXED_IV(header) (&header->data[GetInt2(header->labelLen)
  87. +GetInt2(header->keyIDLen)])
  88. #define PEFIXED_Key(header) (&header->data[GetInt2(header->labelLen)
  89. +GetInt2(header->keyIDLen)+GetInt2(header->keyLen)])
  90. #define PERSA_Issuer(header) (header->data)
  91. #define PERSA_Serial(header) (&header->data[GetInt2(header->issuerLen)])
  92. #define PERSA_IV(header) (&header->data[GetInt2(header->issuerLen)
  93. +GetInt2(header->serialLen)])
  94. #define PERSA_Key(header) (&header->data[GetInt2(header->issuerLen)
  95. +GetInt2(header->serialLen)+GetInt2(header->keyLen)])
  96. struct PEHeaderStr {
  97.     unsigned char magic  [2]; /* always 0xC0DE */
  98.     unsigned char len    [2]; /* length of PEHeader */
  99.     unsigned char type   [2]; /* FORTEZZA, DIFFIE-HELMAN, RSA */
  100.     unsigned char version[2]; /* version number: 1.0 */
  101.     union {
  102.         PEFortezzaHeader          fortezza;
  103.         PEFortezzaGeneratedHeader g_fortezza;
  104. PEFixedKeyHeader          fixed;
  105. PERSAKeyHeader            rsa;
  106.     } u;
  107. };
  108. #define PE_CRYPT_INTRO_LEN 8
  109. #define PE_INTRO_LEN 4
  110. #define PE_BASE_HEADER_LEN  8
  111. #define PRE_BLOCK_SIZE 8         /* for decryption blocks */
  112. /*
  113.  * Platform neutral encode/decode macros.
  114.  */
  115. #define GetInt2(c) ((c[0] << 8) | c[1])
  116. #define GetInt4(c) (((unsigned long)c[0] << 24)|((unsigned long)c[1] << 16)
  117. |((unsigned long)c[2] << 8)| ((unsigned long)c[3]))
  118. #define PutInt2(c,i) ((c[1] = (i) & 0xff), (c[0] = ((i) >> 8) & 0xff))
  119. #define PutInt4(c,i) ((c[0]=((i) >> 24) & 0xff),(c[1]=((i) >> 16) & 0xff),
  120. (c[2] = ((i) >> 8) & 0xff), (c[3] = (i) & 0xff))
  121. /*
  122.  * magic numbers.
  123.  */
  124. #define PRE_MAGIC 0xc0de
  125. #define PRE_VERSION 0x1010
  126. #define PRE_FORTEZZA_FILE 0x00ff  /* pre-encrypted file on disk */
  127. #define PRE_FORTEZZA_STREAM 0x00f5  /* pre-encrypted file in stream */
  128. #define PRE_FORTEZZA_GEN_STREAM 0x00f6  /* Generated pre-encrypted file */
  129. #define PRE_FIXED_FILE 0x000f  /* fixed key on disk */
  130. #define PRE_RSA_FILE 0x001f  /* RSA in file */
  131. #define PRE_FIXED_STREAM 0x0005  /* fixed key in stream */
  132. /*
  133.  * internal implementation info
  134.  */
  135. /* convert an existing stream header to a version with local parameters */
  136. PEHeader *SSL_PreencryptedStreamToFile(PRFileDesc *fd, PEHeader *,
  137.        int *headerSize);
  138. /* convert an existing file header to one suitable for streaming out */
  139. PEHeader *SSL_PreencryptedFileToStream(PRFileDesc *fd, PEHeader *,
  140.        int *headerSize);