Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

The following registry entries register the cryptographic service provider (CSP) with the operating system (OS).

Copy Code
[HKEY_LOCAL_MACHINE\Comm\Security\Crypto\Defaults\Provider\
CSP name]
	Image Path = REG_SZ: 
CSP DLL name
	Signature = REG_BINARY: 
digital signature
	Type = REG_DWORD: 
CSP Type

The CSP nameentry must be the textual name of the CSP. If Microsoft has signed the CSP, this name must exactly match the CSP name that was specified in the Export Compliance Certificate (ECC).

The CSP DLL nameentry must be set to the name of the CSP DLL. A fully qualified path, such as \Windows\Rsabase.dll, can also be specified here.

The CSP type entryis a DWORDvalue that corresponds to the CSP provider type.

The following example shows how to register a service provider with the OS.

Copy Code
[HKEY_LOCAL_MACHINE\Comm\Security\Crypto\Defaults\Provider\Microsoft
Base Cryptographic Provider v1.0]
	Image Path = REG_SZ:rsabase.dll
	Signature = REG_BINARY:
digital signature
	Type = REG_DWORD:0x1

See Also