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

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. #ifdef DEBUG
  34. static const char CVS_ID[] = "@(#) $Source: /cvsroot/mozilla/security/nss/lib/pkix/src/X520Name/PCreateFromUTF8.c,v $ $Revision: 1.1 $ $Date: 2000/03/31 19:14:38 $ $Name: NSS_3_1_1_RTM $";
  35. #endif /* DEBUG */
  36. #ifndef PKIX_H
  37. #include "pkix.h"
  38. #endif /* PKIX_H */
  39. /*
  40.  * nssPKIXX520Name_CreateFromUTF8
  41.  *
  42.  * { basically just enforces the length limit }
  43.  *
  44.  * The error may be one of the following values:
  45.  *  NSS_ERROR_INVALID_BER
  46.  *  NSS_ERROR_NO_MEMORY
  47.  *  NSS_ERROR_INVALID_ARENA
  48.  * 
  49.  * Return value:
  50.  *  A valid pointer to an NSSPKIXX520Name upon success
  51.  *  NULL upon failure
  52.  */
  53. NSS_IMPLEMENT NSSPKIXX520Name *
  54. nssPKIXX520Name_CreateFromUTF8
  55. (
  56.   NSSArena *arenaOpt,
  57.   NSSUTF8 *utf8
  58. )
  59. {
  60.   NSSPKIXX520Name *rv = (NSSPKIXX520Name *)NULL;
  61.   nssArenaMark *mark = (nssArenaMark *)NULL;
  62. #ifdef NSSDEBUG
  63.   if( (NSSArena *)NULL != arenaOpt ) {
  64.     if( PR_SUCCESS != nssArena_verifyPointer(arenaOpt) ) {
  65.       return (NSSPKIXX520Name *)NULL;
  66.     }
  67.   }
  68.   if( (NSSUTF8 *)NULL == utf8 ) {
  69.     nss_SetError(NSS_ERROR_INVALID_STRING);
  70.     return (NSSPKIXX520Name *)NULL;
  71.   }
  72. #endif /* NSSDEBUG */
  73.   if( (NSSArena *)NULL != arenaOpt ) {
  74.     mark = nssArena_Mark(arenaOpt);
  75.     if( (nssArenaMark *)NULL == mark ) {
  76.       goto loser;
  77.     }
  78.   }
  79.   rv = nss_ZNEW(arenaOpt, NSSPKIXX520Name);
  80.   if( (NSSPKIXX520Name *)NULL == rv ) {
  81.     goto loser;
  82.   }
  83.   rv->utf8 = nssUTF8_Duplicate(utf8, arenaOpt);
  84.   if( (NSSUTF8 *)NULL == rv->utf8 ) {
  85.     goto loser;
  86.   }
  87.   /*
  88.    * RFC 2459 states (s. 4.1.2.4) that certificates issued after
  89.    * 2003-12-31 MUST encode strings as UTF8Strings, and until
  90.    * then they may be encoded as PrintableStrings, BMPStrings,
  91.    * or UTF8Strings (when the character sets allow).  However, it
  92.    * specifically notes that even before 2003-12-31, strings may
  93.    * be encoded as UTF8Strings.  So unless something important
  94.    * breaks, I'll do UTF8Strings.
  95.    */
  96.   rv->der = nssUTF8_GetDEREncoding(arenaOpt, nssStringType_UTF8String, 
  97.                                    utf8);
  98.   if( (NSSDER *)NULL == rv->der ) {
  99.     goto loser;
  100.   }
  101.   rv->string.size = rv->der->size;
  102.   rv->string.data = nss_ZAlloc(arenaOpt, rv->string.size);
  103.   if( (void *)NULL == rv->string.data ) {
  104.     goto loser;
  105.   }
  106.   (void)nsslibc_memcpy(rv->string.data, rv->der->size, rv->string.size);
  107.   if( (NSSArena *)NULL != arenaOpt ) {
  108.     rv->inArena = PR_TRUE;
  109.   }
  110.   if( (nssArenaMark *)NULL != mark ) {
  111.     if( PR_SUCCESS != nssArena_Unmark(arenaOpt, mark) ) {
  112.       goto loser;
  113.     }
  114.   }
  115. #ifdef DEBUG
  116.   if( PR_SUCCESS != nss_pkix_X520Name_add_pointer(rv) ) {
  117.     goto loser;
  118.   }
  119.   if( PR_SUCCESS != nssArena_registerDestructor(arena, 
  120.         nss_pkix_X520Name_remove_pointer, rv) ) {
  121.     (void)nss_pkix_X520Name_remove_pointer(rv);
  122.     goto loser;
  123.   }
  124. #endif /* DEBUG */
  125.   return rv;
  126.  loser:
  127.   if( (nssArenaMark *)NULL != mark ) {
  128.     (void)nssArena_Release(arenaOpt, mark);
  129.   }
  130.   if( (NSSArena *)NULL == arenaOpt ) {
  131.     if( (NSSPKIXX520Name *)NULL != rv ) {
  132.       if( (NSSDER *)NULL != rv->der ) {
  133.         nss_ZFreeIf(rv->der->data);
  134.         nss_ZFreeIf(rv->der);
  135.       }
  136.       nss_ZFreeIf(rv->string.data);
  137.       nss_ZFreeIf(rv->utf8);
  138.       nss_ZFreeIf(rv);
  139.     }
  140.   }
  141.   return (NSSPKIXX520Name *)NULL;
  142. }