我正在尝试在 VBA、Excel 2003 上实现 SHA512 算法。
这是我使用的基础: http: //www.saphir2.com/sphlib/
我在 VBA 中使用 UInt64 (unsigned long) 时遇到问题。以下代码引发错误:Variable Uses an Automation Type Not Supported
.
Sub Main()
Dim notworking As UInt64
End Sub
我该如何解决这个问题?
我正在尝试在 VBA、Excel 2003 上实现 SHA512 算法。
这是我使用的基础: http: //www.saphir2.com/sphlib/
我在 VBA 中使用 UInt64 (unsigned long) 时遇到问题。以下代码引发错误:Variable Uses an Automation Type Not Supported
.
Sub Main()
Dim notworking As UInt64
End Sub
我该如何解决这个问题?