⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 codegen.h

📁 genesis9.0算号器_算号器视频文件
💻 H
字号:

/*
	CodeGen.DLL
	Copyright 1999-2002 by Chad Nelson and the Silicon Realms Toolworks
	All rights reserved
*/

#include "ole2.h"
#include "oleauto.h"

#undef CODEGEN_API
#ifdef CODEGEN_EXPORTS
	#define CODEGEN_API __declspec(dllexport)
#elif defined(CODEGEN_LIB)
	#define CODEGEN_API
#else
	#define CODEGEN_API __declspec(dllimport)
#endif

#ifdef __cplusplus
extern "C" {
#endif

/*
	Name:
		CreateCode
		VBCreateCode

	Purpose:
		Generates unsigned (or V1) keys for programs protected by the Armadillo
		Software Protection System.

	Parameters:
		const char *name
			This should be the user-name to link the key to, such as
			"Chad Nelson". It is the name the user must enter, along with the
			returned code, for proper operation.

		const char *encrypt_template
			This is the "encryption template" you chose in your Armadillo
			project. Select the encryption template for the certificate you
			want to make the key for.

		unsigned long hardwareID
			This is the "hardware fingerprint" of the machine the key is
			intended for. If you're not using hardware-locked certificates, it
			should be zero.

		unsigned short otherinfo
			This is used to specify the number of days/uses for the expiration-
			in-key info, or the number of copies for copies-in-key certificates,
			or the 'extra info' number. If none of these are used, it should be
			zero. See the MakeDate() function for expires-by-date keys.

	Returns: A string containing the 16-digit hexidecimal code, separated into
		four groups of four digits each.
*/

CODEGEN_API const char *CreateCode(const char *name, const char *encrypt_template, unsigned long hardwareID, unsigned short otherinfo);
CODEGEN_API BSTR __stdcall VBCreateCode(const char *name, const char *encrypt_template, unsigned long hardwareID, unsigned long otherinfo);

/*
	Name:
		CreateCode2
		VBCreateCode2
		CreateCode3
		VBCreateCode3
		CreateCodeShort3
		VBCreateCodeShort3

	Purpose:
		Generates v2 (CreateCode2, VBCreateCode2), v3 (CreateCode3,
		VBCreateCode3), or ShortV3 (CreateCodeShort3, VBCreateCodeShort3)
		signed keys, of any signature level, for programs protected by the
		Armadillo Software Protection System.

	Parameters:
		int level
			The signature level (1 through 4 for CreateCode2, or 1 through 9
			for CreateCode3 or CreateCodeShort3) specified for this certificate
			in your Armadillo project.

		const char *name
			This should be the user-name to link the key to, such as
			"Chad Nelson". It is the name the user must enter, along with the
			returned code, for proper operation.

		const char *encrypt_template
			This is the "encryption template" you chose in your Armadillo
			project. Select the encryption template for the certificate you
			want to make the key for.

		unsigned long hardwareID
			This is the "hardware fingerprint" of the machine the key is
			intended for. If you're not using hardware-locked certificates, it
			should be zero.

		unsigned short otherinfo1, otherinfo2, otherinfo3, otherinfo4, otherinfo5
			These are used to specify the number of days/uses for the
			expiration-in-key info, the number of copies for copies-in-key
			certificates, and/or the 'extra info' number.

			The order of the parameters is:
				Expiration info (if expiration-in-key; see MakeDate() function
					for expires-by-date keys);
				Copies (if copies-in-key);
				Extra info 1 (if desired; the low 16 bits of the extra info);
				Extra info 2 (if desired; the high 16 bits of the extra info).

			The otherinfo5 parameter is not used at present, and is reserved
			for future expansion; it should always be set to zero. Any unused
			parameters must also be set to zero.

	Returns: A string containing the hexidecimal key-code, separated into groups
		of four digits.
*/

CODEGEN_API const char *CreateCode2(int level, const char *name, const char *encrypt_template, unsigned long hardwareID, unsigned short otherinfo1, unsigned short otherinfo2, unsigned short otherinfo3, unsigned short otherinfo4, unsigned short otherinfo5);
CODEGEN_API BSTR __stdcall VBCreateCode2(int level, const char *name, const char *encrypt_template, unsigned long hardwareID, unsigned short otherinfo1, unsigned short otherinfo2, unsigned short otherinfo3, unsigned short otherinfo4, unsigned short otherinfo5);
CODEGEN_API const char *CreateCode3(int level, const char *name, const char *encrypt_template, unsigned long hardwareID, unsigned short otherinfo1, unsigned short otherinfo2, unsigned short otherinfo3, unsigned short otherinfo4, unsigned short otherinfo5);
CODEGEN_API BSTR __stdcall VBCreateCode3(int level, const char *name, const char *encrypt_template, unsigned long hardwareID, unsigned short otherinfo1, unsigned short otherinfo2, unsigned short otherinfo3, unsigned short otherinfo4, unsigned short otherinfo5);
CODEGEN_API const char *CreateCodeShort3(int level, const char *name, const char *encrypt_template, unsigned long hardwareID, unsigned short otherinfo1, unsigned short otherinfo2, unsigned short otherinfo3, unsigned short otherinfo4, unsigned short otherinfo5);
CODEGEN_API BSTR __stdcall VBCreateCodeShort3(int level, const char *name, const char *encrypt_template, unsigned long hardwareID, unsigned short otherinfo1, unsigned short otherinfo2, unsigned short otherinfo3, unsigned short otherinfo4, unsigned short otherinfo5);

/*
	Most implementations can ignore the MakeDate function. It creates an
	Armadillo-formatted date, for use in the "otherinfo" expiration parameter
	of the CreateCode functions for expire-by-date keys. The year should be the
	four-digit year, the month should be 1 to 12, and the day should be 1 to
	31. It returns 0xFFFF on error (bad date or date before 1999.01.01).
*/

CODEGEN_API unsigned short __stdcall MakeDate(unsigned int year, unsigned int month, unsigned int day);

/*
	The following function will translate an eight-digit hexadecimal code,
	possibly with formatting, to an unsigned long. Some implementations may
	need this capability to generate hardware locked keys.
*/

CODEGEN_API unsigned long __stdcall HexToInt(const char *name);

/*
	Name:
		CheckUninstallKey

	Purpose:
		Checks an uninstall key for validity. Also does basic checking on
		original key (everything but verifying the signature).

	Parameters:
		int level
			The signature level (1 through 8) specified for this certificate
			in your Armadillo project, or zero for an unsigned key.

		const char *name
			This should be the user-name to link the key to, such as
			"Chad Nelson". It is the name the user must enter, along with the
			returned code, for proper operation.

		const char *encrypt_template
			This is the "encryption template" you chose in your Armadillo
			project. Select the encryption template for the certificate you
			want to make the key for.

		unsigned long hardwareID
			This is the "hardware fingerprint" of the machine the key is
			intended for. If you're not using hardware-locked certificates, it
			should be zero.

		const char *origkey
			The user's original key, as a string. The formatting can be
			included or ignored, it doesn't matter.

		const char *uninstkey
			The uninstall key that the user provides, and that you wish to
			check. The formatting can be included or ignored, it doesn't
			matter.

	Returns:
		Non-zero (true) if the key is good and the uninstall key matches it.
		Otherwise zero (false).	
*/

CODEGEN_API bool __stdcall CheckUninstallKey(int level, const char *name, const char *enc_template, unsigned long hardwareID, const char *origkey, const char *uninstkey);

/*
	Name:
		DateKeyCreated
		VBDateKeyCreated

	Purpose:
		Extracts the date that a key was created from the key. Also does basic
		checking on original key (everything but verifying the signature).

	Parameters:
		int level
			The signature level (1 through 4 for v2 keys, 11 through 19 for v3
			keys -- add 10 to the actual level) specified for this certificate
			in your Armadillo project, or zero for an unsigned key.

		const char *name
			This should be the user-name to link the key to, such as
			"Chad Nelson". It is the name the user must enter, along with the
			returned code, for proper operation.

		const char *encrypt_template
			This is the "encryption template" you chose in your Armadillo
			project. Select the encryption template for the certificate you
			want to make the key for.

		unsigned long hardwareID
			This is the "hardware fingerprint" of the machine the key is
			intended for. If you're not using hardware-locked certificates, it
			should be zero.

		const char *origkey
			The user's original key, as a string. The formatting can be
			included or ignored, it doesn't matter.

	Returns:
		A C string (DateKeyCreated) or a BSTR (VBDateKeyCreated) indicating the
		date that the key was created, in the form YYYY.MM.DD, where YYYY is
		the four-digit year, MM is the two-digit month (1..12), and DD is the
		two-digit day. On any error or problem, it returns an empty,
		zero-length string.
*/

CODEGEN_API const char *DateKeyCreated(int level, const char *name, const char *enc_template, unsigned long hardwareID, const char *origkey);
CODEGEN_API BSTR __stdcall VBDateKeyCreated(int level, const char *name, const char *enc_template, unsigned long hardwareID, const char *origkey);

/*
	Name:
		CreateFixClockKey
		VBCreateFixClockKey

	Purpose:
		Creates a FixClock key for a program.

	Parameters:
		const char *project_name
			The name of the project, as specified in the project file. Note,
			this is NOT the filename of the file itself -- it is a user-selected
			setting within the project!

	Returns:
		A C string (CreateFixClockKey) or BSTR (VBCreateFixClockKey) containing
		a FixClock key for that program, which is valid only for three days
		after it is created.
*/

CODEGEN_API const char *CreateFixClockKey(const char *project_name);
CODEGEN_API BSTR __stdcall VBCreateFixClockKey(const char *project_name);

/*
	Name:
		WriteHardwareChangeLog

	Purpose:
		Translates an Armadillo Hardware Change Log (*.AHCL) file to text
		format.

	Parameters:
		const char *writefilename
			The path and filename of the file to write.

		const char *ahclfilename
			The path and filename of the *.AHCL file.

	Returns:
		A C++-style Boolean value, true if the hardware change log file is
		acceptable and the output file was written properly, false if there
		was a problem with the file, or an error while reading or writing.
*/

CODEGEN_API bool WriteHardwareChangeLog(const char *writefilename, const char *ahclfilename);

#ifdef __cplusplus
};
#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -