StrongNameKeyInstall Function

Imports a public/private key pair into a container.

This function has been deprecated in the .NET Framework version 4. Use the ICLRStrongName::StrongNameKeyInstall method instead.

BOOLEAN StrongNameKeyInstall (
    [in]  LPCWSTR   wszKeyContainer,
    [in]  BYTE      *pbKeyBlob,
    [in]  ULONG     cbKeyBlob
);

Parameters

  • wszKeyContainer
    [in] The name of the key container. wszKeyContainer must be a non-empty string.

  • pbKeyBlob
    [in] The binary key pair.

  • cbKeyBlob
    [in] The size, in bytes, of pbKeyBlob.

Return Value

true on successful completion; otherwise, false.

Remarks

Use the StrongNameKeyDelete function to delete the key container.

If the StrongNameKeyInstall function does not complete successfully, call the StrongNameErrorInfo function to retrieve the last generated error.

Requirements

Platforms: WindSee .NET Framework System Requirements.

Header: StrongName.h

Library: Included as a resource in MsCorEE.dll

.NET Framework Versions: 4, 3.5 SP1, 3.5, 3.0 SP1, 3.0, 2.0 SP1, 2.0, 1.1, 1.0

See Also

Reference

ICLRStrongName::StrongNameKeyInstall Method

ICLRStrongName::StrongNameKeyDelete Method

ICLRStrongName Interface