Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#include <windows.h> #include <ntverp.h> #include "cryptver.h" #include "resource.h"
#define VER_FILETYPE VFT_DLL #define VER_FILESUBTYPE VFT2_UNKNOWN #define VER_FILEDESCRIPTION_STR "MS SCEP Implementation"
#define VER_INTERNALNAME_STR "MSCEP.DLL" #define VER_ORIGINALFILENAME_STR VER_INTERNALNAME_STR
#include <common.ver>
#include "ceplog.rc"
///////////////////////////////////////////////////////////////////////////// // // String Table //
STRINGTABLE DISCARDABLE BEGIN IDS_HTML_TEMPLATE "<HTML><Head><Title>Simple Certificate Enrollment Protocol (SCEP) Add-On for Certificate Services</Title></Head><Body BgColor=#FFFFFF><Font ID=locPageFont Face=Arial><Table Border=0 CellSpacing=0 CellPadding=4 Width=100%% BgColor=#008080><TR><TD><Font Color=#FFFFFF><LocID ID=locMSCertSrv><Font Face=Arial Size=-1>Simple Certificate Enrollment Protocol (SCEP) Add-On for Certificate Services </Font></LocID></Font></TD></TR></Table><P ID=locPageTitle> <B> Welcome </B><P ID=locPageDesc> %1!s! <P> For more information please see the online documentation <A HREF=mscephlp.htm>mscephlp.htm</A>. <P></Font></Body></HTML>" IDS_ACCESS_DENIED "You do not have sufficient permission to enroll with SCEP. Please contact your system administrator." IDS_ERROR_UNKONWN "Unknown error." IDS_TOO_MANY_PASSWORD "The maximum number of outstanding enrollment passwords has been reached. Please wait until existing passwords are used or they expire." IDS_CEP_INFO_WITH_PASSWORD "The CA certificate's thumbprint is %1!s!. <P> Your enrollment challenge password is %2!s! and will expire within %3!d! minutes.   This password can only be used once. <P> Each enrollment requires a new challenge password.   You can refresh this web page to obtain a new challenge password." IDS_CEP_INFO_NO_PASSWORD "The CA certificate's thumbprint is %1!s!." IDS_FAIL_TO_GET_PASSWORD "Can not generate an enrollment password: %1!s! - Notify administrator to check server resources" IDS_FAIL_TO_ADD_PASSWORD "Can not save the generated enrollment password: %1!s! - Notify administrator to check server resources" END
|