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

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. #include "pqgutil.h"
  34. #include "prerror.h"
  35. #include "secitem.h"
  36. #define PQG_DEFAULT_CHUNKSIZE 2048 /* bytes */
  37. /**************************************************************************
  38.  *  Return a pointer to a new PQGParams struct that is a duplicate of     *
  39.  *  the one passed as an argument.                                        *
  40.  *  Return NULL on failure, or if NULL was passed in.                     *
  41.  *                                                                        *
  42.  **************************************************************************/
  43. PQGParams *
  44. PQG_DupParams(const PQGParams *src)
  45. {
  46.     PRArenaPool *arena;
  47.     PQGParams *dest;
  48.     SECStatus status;
  49.     if (src == NULL) {
  50. PORT_SetError(PR_INVALID_ARGUMENT_ERROR);
  51. return NULL;
  52.     }
  53.     arena = PORT_NewArena(PQG_DEFAULT_CHUNKSIZE);
  54.     if (arena == NULL)
  55. goto loser;
  56.     dest = (PQGParams*)PORT_ArenaZAlloc(arena, sizeof(PQGParams));
  57.     if (dest == NULL)
  58. goto loser;
  59.     dest->arena = arena;
  60.     status = SECITEM_CopyItem(arena, &dest->prime, &src->prime);
  61.     if (status != SECSuccess)
  62. goto loser;
  63.     status = SECITEM_CopyItem(arena, &dest->subPrime, &src->subPrime);
  64.     if (status != SECSuccess)
  65. goto loser;
  66.     status = SECITEM_CopyItem(arena, &dest->base, &src->base);
  67.     if (status != SECSuccess)
  68. goto loser;
  69.     return dest;
  70. loser:
  71.     if (arena != NULL)
  72. PORT_FreeArena(arena, PR_FALSE);
  73.     return NULL;
  74. }
  75. /**************************************************************************
  76.  *  Return a pointer to a new PQGParams struct that is constructed from   *
  77.  *  copies of the arguments passed in.                                    *
  78.  *  Return NULL on failure.                                               *
  79.  **************************************************************************/
  80. PQGParams *
  81. PQG_NewParams(const SECItem * prime, const SECItem * subPrime, 
  82.               const SECItem * base)
  83. {
  84.     PQGParams *  dest;
  85.     PQGParams    src;
  86.     src.arena    = NULL;
  87.     src.prime    = *prime;
  88.     src.subPrime = *subPrime;
  89.     src.base     = *base;
  90.     dest         = PQG_DupParams(&src);
  91.     return dest;
  92. }
  93. /**************************************************************************
  94.  * Fills in caller's "prime" SECItem with the prime value in params.
  95.  * Contents can be freed by calling SECITEM_FreeItem(prime, PR_FALSE);
  96.  **************************************************************************/
  97. SECStatus
  98. PQG_GetPrimeFromParams(const PQGParams *params, SECItem * prime)
  99. {
  100.     return SECITEM_CopyItem(NULL, prime, &params->prime);
  101. }
  102. /**************************************************************************
  103.  * Fills in caller's "subPrime" SECItem with the prime value in params.
  104.  * Contents can be freed by calling SECITEM_FreeItem(subPrime, PR_FALSE);
  105.  **************************************************************************/
  106. SECStatus
  107. PQG_GetSubPrimeFromParams(const PQGParams *params, SECItem * subPrime)
  108. {
  109.     return SECITEM_CopyItem(NULL, subPrime, &params->subPrime);
  110. }
  111. /**************************************************************************
  112.  * Fills in caller's "base" SECItem with the base value in params.
  113.  * Contents can be freed by calling SECITEM_FreeItem(base, PR_FALSE);
  114.  **************************************************************************/
  115. SECStatus
  116. PQG_GetBaseFromParams(const PQGParams *params, SECItem * base)
  117. {
  118.     return SECITEM_CopyItem(NULL, base, &params->base);
  119. }
  120. /**************************************************************************
  121.  *  Free the PQGParams struct and the things it points to.                *
  122.  **************************************************************************/
  123. void
  124. PQG_DestroyParams(PQGParams *params)
  125. {
  126.     if (params == NULL) 
  127.      return;
  128.     if (params->arena != NULL) {
  129. PORT_FreeArena(params->arena, PR_FALSE); /* don't zero it */
  130.     } else {
  131. SECITEM_FreeItem(&params->prime,    PR_FALSE); /* don't free prime */
  132. SECITEM_FreeItem(&params->subPrime, PR_FALSE); /* don't free subPrime */
  133. SECITEM_FreeItem(&params->base,     PR_FALSE); /* don't free base */
  134. PORT_Free(params);
  135.     }
  136. }
  137. /**************************************************************************
  138.  *  Return a pointer to a new PQGVerify struct that is a duplicate of     *
  139.  *  the one passed as an argument.                                        *
  140.  *  Return NULL on failure, or if NULL was passed in.                     *
  141.  **************************************************************************/
  142. PQGVerify *
  143. PQG_DupVerify(const PQGVerify *src)
  144. {
  145.     PRArenaPool *arena;
  146.     PQGVerify *  dest;
  147.     SECStatus    status;
  148.     if (src == NULL) {
  149. PORT_SetError(PR_INVALID_ARGUMENT_ERROR);
  150. return NULL;
  151.     }
  152.     arena = PORT_NewArena(PQG_DEFAULT_CHUNKSIZE);
  153.     if (arena == NULL)
  154. goto loser;
  155.     dest = (PQGVerify*)PORT_ArenaZAlloc(arena, sizeof(PQGVerify));
  156.     if (dest == NULL)
  157. goto loser;
  158.     dest->arena   = arena;
  159.     dest->counter = src->counter;
  160.     status = SECITEM_CopyItem(arena, &dest->seed, &src->seed);
  161.     if (status != SECSuccess)
  162. goto loser;
  163.     status = SECITEM_CopyItem(arena, &dest->h, &src->h);
  164.     if (status != SECSuccess)
  165. goto loser;
  166.     return dest;
  167. loser:
  168.     if (arena != NULL)
  169. PORT_FreeArena(arena, PR_FALSE);
  170.     return NULL;
  171. }
  172. /**************************************************************************
  173.  *  Return a pointer to a new PQGVerify struct that is constructed from   *
  174.  *  copies of the arguments passed in.                                    *
  175.  *  Return NULL on failure.                                               *
  176.  **************************************************************************/
  177. PQGVerify *
  178. PQG_NewVerify(unsigned int counter, const SECItem * seed, const SECItem * h)
  179. {
  180.     PQGVerify *  dest;
  181.     PQGVerify    src;
  182.     src.arena    = NULL;
  183.     src.counter  = counter;
  184.     src.seed     = *seed;
  185.     src.h        = *h;
  186.     dest         = PQG_DupVerify(&src);
  187.     return dest;
  188. }
  189. /**************************************************************************
  190.  * Returns the "counter" value from the PQGVerify.
  191.  **************************************************************************/
  192. unsigned int
  193. PQG_GetCounterFromVerify(const PQGVerify *verify)
  194. {
  195.     return verify->counter;
  196. }
  197. /**************************************************************************
  198.  * Fills in caller's "seed" SECItem with the seed value in verify.
  199.  * Contents can be freed by calling SECITEM_FreeItem(seed, PR_FALSE);
  200.  **************************************************************************/
  201. SECStatus
  202. PQG_GetSeedFromVerify(const PQGVerify *verify, SECItem * seed)
  203. {
  204.     return SECITEM_CopyItem(NULL, seed, &verify->seed);
  205. }
  206. /**************************************************************************
  207.  * Fills in caller's "h" SECItem with the h value in verify.
  208.  * Contents can be freed by calling SECITEM_FreeItem(h, PR_FALSE);
  209.  **************************************************************************/
  210. SECStatus
  211. PQG_GetHFromVerify(const PQGVerify *verify, SECItem * h)
  212. {
  213.     return SECITEM_CopyItem(NULL, h, &verify->h);
  214. }
  215. /**************************************************************************
  216.  *  Free the PQGVerify struct and the things it points to.                *
  217.  **************************************************************************/
  218. void
  219. PQG_DestroyVerify(PQGVerify *vfy)
  220. {
  221.     if (vfy == NULL) 
  222.      return;
  223.     if (vfy->arena != NULL) {
  224. PORT_FreeArena(vfy->arena, PR_FALSE); /* don't zero it */
  225.     } else {
  226. SECITEM_FreeItem(&vfy->seed,   PR_FALSE); /* don't free seed */
  227. SECITEM_FreeItem(&vfy->h,      PR_FALSE); /* don't free h */
  228. PORT_Free(vfy);
  229.     }
  230. }