문자열을 복호화 합니다.


public string Decrypt(string value)


Parameters

Name동작명비고
value
복호화할 문자열







Return Value

Type:  string

복호화된 문자열


VBA 코드


Sub DecryptTest()
	Dim mxmodule As Object
	Set mxmodule = Application.COMAddIns.Item("iMATRIX.ExcelModule").Object

	ret = mxmodule.xapi.Encrypt("message")
	debug.print ret

	ret = mxmodule.xapi.Decrypt(ret)
	debug.print ret
End Sub