sectime.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. #include "prlong.h"
  34. #include "prtime.h"
  35. #include "secder.h"
  36. #include "cert.h"
  37. #include "secitem.h"
  38. const SEC_ASN1Template CERT_ValidityTemplate[] = {
  39.     { SEC_ASN1_SEQUENCE,
  40.   0, NULL, sizeof(CERTValidity) },
  41.     { SEC_ASN1_UTC_TIME,
  42.   offsetof(CERTValidity,notBefore) },
  43.     { SEC_ASN1_UTC_TIME,
  44.   offsetof(CERTValidity,notAfter) },
  45.     { 0 }
  46. };
  47. DERTemplate CERTValidityTemplate[] = {
  48.     { DER_SEQUENCE,
  49.   0, NULL, sizeof(CERTValidity) },
  50.     { DER_UTC_TIME,
  51.   offsetof(CERTValidity,notBefore), },
  52.     { DER_UTC_TIME,
  53.   offsetof(CERTValidity,notAfter), },
  54.     { 0, }
  55. };
  56. static char *DecodeUTCTime2FormattedAscii (SECItem *utcTimeDER, char *format);
  57. /* convert DER utc time to ascii time string */
  58. char *
  59. DER_UTCTimeToAscii(SECItem *utcTime)
  60. {
  61.     return (DecodeUTCTime2FormattedAscii (utcTime, "%a %b %d %H:%M:%S %Y"));
  62. }
  63. /* convert DER utc time to ascii time string, only include day, not time */
  64. char *
  65. DER_UTCDayToAscii(SECItem *utctime)
  66. {
  67.     return (DecodeUTCTime2FormattedAscii (utctime, "%a %b %d, %Y"));
  68. }
  69. CERTValidity *
  70. CERT_CreateValidity(int64 notBefore, int64 notAfter)
  71. {
  72.     CERTValidity *v;
  73.     int rv;
  74.     PRArenaPool *arena;
  75.     arena = PORT_NewArena(DER_DEFAULT_CHUNKSIZE);
  76.     
  77.     if ( !arena ) {
  78. return(0);
  79.     }
  80.     
  81.     v = (CERTValidity*) PORT_ArenaZAlloc(arena, sizeof(CERTValidity));
  82.     if (v) {
  83. v->arena = arena;
  84. rv = DER_TimeToUTCTime(&v->notBefore, notBefore);
  85. if (rv) goto loser;
  86. rv = DER_TimeToUTCTime(&v->notAfter, notAfter);
  87. if (rv) goto loser;
  88.     }
  89.     return v;
  90.   loser:
  91.     CERT_DestroyValidity(v);
  92.     return 0;
  93. }
  94. SECStatus
  95. CERT_CopyValidity(PRArenaPool *arena, CERTValidity *to, CERTValidity *from)
  96. {
  97.     SECStatus rv;
  98.     CERT_DestroyValidity(to);
  99.     to->arena = arena;
  100.     
  101.     rv = SECITEM_CopyItem(arena, &to->notBefore, &from->notBefore);
  102.     if (rv) return rv;
  103.     rv = SECITEM_CopyItem(arena, &to->notAfter, &from->notAfter);
  104.     return rv;
  105. }
  106. void
  107. CERT_DestroyValidity(CERTValidity *v)
  108. {
  109.     if (v && v->arena) {
  110. PORT_FreeArena(v->arena, PR_FALSE);
  111.     }
  112.     return;
  113. }
  114. char *
  115. CERT_UTCTime2FormattedAscii (int64 utcTime, char *format)
  116. {
  117.     PRExplodedTime printableTime; 
  118.     char *timeString;
  119.    
  120.     /* Converse time to local time and decompose it into components */
  121.     PR_ExplodeTime(utcTime, PR_LocalTimeParameters, &printableTime);
  122.     
  123.     timeString = (char *)PORT_Alloc(100);
  124.     if ( timeString ) {
  125.         PR_FormatTime( timeString, 100, format, &printableTime );
  126.     }
  127.     
  128.     return (timeString);
  129. }
  130. char *CERT_GenTime2FormattedAscii (int64 genTime, char *format)
  131. {
  132.     PRExplodedTime printableTime; 
  133.     char *timeString;
  134.    
  135.     /* Decompose time into components */
  136.     PR_ExplodeTime(genTime, PR_GMTParameters, &printableTime);
  137.     
  138.     timeString = (char *)PORT_Alloc(100);
  139.     if ( timeString ) {
  140.         PR_FormatTime( timeString, 100, format, &printableTime );
  141.     }
  142.     
  143.     return (timeString);
  144. }
  145. /* convert DER utc time to ascii time string, The format of the time string
  146.    depends on the input "format"
  147.  */
  148. static char *
  149. DecodeUTCTime2FormattedAscii (SECItem *utcTimeDER,  char *format)
  150. {
  151.     int64 utcTime;
  152.     int rv;
  153.    
  154.     rv = DER_UTCTimeToTime(&utcTime, utcTimeDER);
  155.     if (rv) {
  156.         return(NULL);
  157.     }
  158.     return (CERT_UTCTime2FormattedAscii (utcTime, format));
  159. }