Click or drag to resize
ClientUserSslCertImportFromBuffer Method
Imports an SSL public certificate to a user's certificate store.

Namespace: MOVEit.DMZ.API
Assembly: MOVEit.DMZ.API (in MOVEit.DMZ.API.dll) Version: 9.0.0.0
Syntax
public bool UserSslCertImportFromBuffer(
	string Username,
	string Buffer
)

Parameters

Username
Type: SystemString
Username of user to add cert for.
Buffer
Type: SystemString
String containing Base-64 encoded SSL public certificate data.

Return Value

Type: Boolean
true if successful; otherwise, false.
Remarks
The contents of the certificate should be placed in the Buffer argument, and must be a Base-64 encoded public-only certificate. Do not use DER or other encodings.
See Also