| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 391 人关注过本帖
标题:求助广大网友,看看XP调用该DLL是否正常。。。。
只看楼主 加入收藏
iswith
Rank: 7Rank: 7Rank: 7
等 级:黑侠
威 望:5
帖 子:493
专家分:645
注 册:2013-5-14
收藏
得分:0 
看样子真编译,真的可以全平台!XP、2003 应该没有核心库,最近在研究这个AOT,搞定了,会发送一份给你免费使用!无任何限制。。。。到时候你注意查收你的消息,这个DLL有一个特别神奇的功能就是超轻量级别的高效并发线程应用,因没有处理好内存泄露以及线程回收,所以就再等等。。。。。

[此贴子已经被作者于2024-12-25 12:17编辑过]

2024-12-25 11:08
凝聚双眼
Rank: 2
等 级:论坛游民
帖 子:46
专家分:43
注 册:2023-12-1
收藏
得分:0 
回复 11楼 iswith
静候佳音,谢过大佬。
2024-12-25 13:06
kangss
Rank: 7Rank: 7Rank: 7
等 级:贵宾
威 望:14
帖 子:279
专家分:639
注 册:2014-6-12
收藏
得分:4 
补充2个server系统的测试:都正常
图片附件: 游客没有浏览图片的权限,请 登录注册

图片附件: 游客没有浏览图片的权限,请 登录注册
2024-12-25 15:14
wcx_cc
Rank: 9Rank: 9Rank: 9
等 级:贵宾
威 望:52
帖 子:393
专家分:1227
注 册:2015-10-2
收藏
得分:0 
5楼测试的结果,window 10 版本,测试多次无异常
图片附件: 游客没有浏览图片的权限,请 登录注册


[此贴子已经被作者于2024-12-25 22:16编辑过]

2024-12-25 22:13
iswith
Rank: 7Rank: 7Rank: 7
等 级:黑侠
威 望:5
帖 子:493
专家分:645
注 册:2013-5-14
收藏
得分:0 
如果执行完后执行clear all 或clear dlls 这个DLL有几个线程在运算GC回收上存在冲突,会把你的VFP Kill掉!原因就是GC,DLL很多人会写,但能把GC写好的,不泄露的没几个人。
2024-12-25 22:59
iswith
Rank: 7Rank: 7Rank: 7
等 级:黑侠
威 望:5
帖 子:493
专家分:645
注 册:2013-5-14
收藏
得分:0 
请方大网友再次测试该函数架框是否可以在XP上正常运行。。。。。
Clear

Set Default To e:\GoTest

Declare string ProcessString IN test.dll string
?ProcessString ("world")

Declare long ProcessString IN test.dll string
?Sys(2600,ProcessString ("world") , 12)

Declare long Sum IN test.dll long,long
?Sum(1,2)

Declare long ProcessStringLen In test.dll string
?ProcessStringLen("world")



Declare string AesCBCEncrypt In test.dll string     EncryptStr;
                                        ,string     Key          ;
                                        ,string @     ErrorMsg

Clear
Local lcAesEncryptStr

m.lcAesEncryptStr = "Hello, AES CBC Pkcs7"
?"AES 原始明文:" + m.lcAesEncryptStr

Local lcAesKey           ;
    , lcAESEncryptStr ;
    , lcErrorMsg
   
m.lcErrorMsg      = Space(1024)
m.lcAesKey           = "myverystrongpasswordo32bitlength"
m.lcAESEncryptStr = AesCBCEncrypt( m.lcAesEncryptStr , m.lcAesKey , @lcErrorMsg )
If !Empty( m.lcErrorMsg )
   ?"错误:"
   ??m.lcErrorMsg
Else  
    ?"Pkcs7Padding 填充 密文:"
    ??m.lcAESEncryptStr
Endif

?Chr(13)


Declare string GenerateRSAKey IN test.dll long
Local lcRSAString
m.lcRSAString = GenerateRSAKey( 1024 )
PrivateKey = Getwordnum( m.lcRSAString , 1 , Chr(13) )
?PrivateKey

PublicKey  = Getwordnum( m.lcRSAString , 2 , Chr(13) )
?PublicKey  

*!*    Clear Dlls
*!*    Clear all

test.7z (720 KB)
昨天 10:38
kangss
Rank: 7Rank: 7Rank: 7
等 级:贵宾
威 望:14
帖 子:279
专家分:639
注 册:2014-6-12
收藏
得分:0 
回复 16楼 iswith
图片附件: 游客没有浏览图片的权限,请 登录注册

连续点击10次感叹号:正常

如果最后2行一起运行:
Clear Dlls
Clear all
有时候运行几十次,比如2、30次、7、80次,小狐狸会自动关闭

[此贴子已经被作者于2025-1-4 16:51编辑过]

昨天 16:43
iswith
Rank: 7Rank: 7Rank: 7
等 级:黑侠
威 望:5
帖 子:493
专家分:645
注 册:2013-5-14
收藏
得分:0 
Clear

Set Default To e:\GoTest

Declare string ProcessString IN test.dll string
?ProcessString ("world")

Declare long ProcessString IN test.dll string
?Sys(2600,ProcessString ("world") , 12)

Declare long Sum IN test.dll long,long
?Sum(1,2)

Declare long ProcessStringLen In test.dll string
?ProcessStringLen("world")


*关于AES加密解可参照:https://
 *PaddingMode
 #Define None                0        && NoPadding
 #Define PKCS7                1        && PKCS7        暂时只支持这个
 #Define Zeros                2        && Zeros
 #Define ANSIX923            3        && ANSIX923
 #Define ISO10126            4        && ISO10126

*--加密
Declare string AesCBCEncrypt In test.dll string     Str              ;
                                        ,string     Key              ;
                                        ,string     Iv            ;
                                        ,string @     ErrorMsg
*--解密
Declare string AesCBCDecrypt In test.dll string     EncryptStr    ;
                                        ,string     Key              ;
                                        ,string     Iv            ;
                                        ,string @     ErrorMsg
*--获取随机Iv向量
Declare string GenerateIV      In test.dll string @     ErrorMsg

Clear
Local lcStr ;
    , lcIv

*--注意中文时要转成UTF8
m.lcStr = Strconv( "test VFP AES加解密" , 9 )
?"明文:" + Strconv( m.lcStr , 11 )

Local lcAesKey           ;
    , lcAESEncryptStr ;
    , lcErrorMsg
   
m.lcErrorMsg      = Space(256)
m.lcAesKey           = "myverystrongpasswordo32bitlength"
?"密匙 文本:"
??m.lcAesKey

?"密匙 Hex:"
??Strconv( m.lcAesKey , 15 )


*--向量以动态生成
*m.lcIv            = GenerateIV( @lcErrorMsg )
*--以cKey 的16字节开头为固定的向量
m.lcIv            = Left( m.lcAesKey  , 16 )
?"IV 文本:"
??m.lcIv

?"IV Hex:"
??Strconv( m.lcIv , 15 )

??"        字节数:" + Transform( Len( m.lcIv )  )


m.lcAESEncryptStr = AesCBCEncrypt( m.lcStr , m.lcAesKey , m.lcIv , @lcErrorMsg )
If !Empty( m.lcErrorMsg )
   ?"错误:"
   ??m.lcErrorMsg
Else  
    ?"密文:"
    _cliptext = m.lcAESEncryptStr &&复制以便在lzltool上验证
    ??m.lcAESEncryptStr
Endif

m.lcErrorMsg      = Space(256)
Local lcDecryptStr
m.lcDecryptStr = AesCBCDecrypt ( m.lcAesEncryptStr , m.lcAesKey , m.lcIv, @lcErrorMsg )
If !Empty( m.lcErrorMsg )
   ?"错误:"
   ??m.lcErrorMsg
Else  
    ?"解密:"
    ??StrConv( m.lcDecryptStr , 11 )
Endif

?Chr(13)


Declare string GenerateRSAKey IN test.dll long
Local lcRSAString
m.lcRSAString = GenerateRSAKey( 256 )
PrivateKey = Getwordnum( m.lcRSAString , 1 , Chr(13) )
?PrivateKey

PublicKey  = Getwordnum( m.lcRSAString , 2 , Chr(13) )
?PublicKey  

*!*    Clear Dlls
*!*    Clear all
昨晚 21:16
schtg
Rank: 12Rank: 12Rank: 12
来 自:Usa
等 级:贵宾
威 望:67
帖 子:1814
专家分:3499
注 册:2012-2-29
收藏
得分:0 
测试正常!
图片附件: 游客没有浏览图片的权限,请 登录注册
13 小时前
iswith
Rank: 7Rank: 7Rank: 7
等 级:黑侠
威 望:5
帖 子:493
专家分:645
注 册:2013-5-14
收藏
得分:0 
测试过的同学请入群 262988434 ,准备发布第一个包,该群任何DLL组件包不收任何费用也无任何限制。

[此贴子已经被作者于2025-1-5 13:30编辑过]

9 小时前
快速回复:求助广大网友,看看XP调用该DLL是否正常。。。。
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.033019 second(s), 9 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved