Python论坛  - 讨论区

标题:[python-chinese] 问一下关于序列号的问题!

2005年12月20日 星期二 10:14

Guofeng Yuan loocoo at gmail.com
Tue Dec 20 10:14:40 HKT 2005

我想用python做两个共享软件,现在主要的功能已经基本完成了,但不知道软件注册这一块怎么做,请各位老大指点指点!
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051220/6431098d/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年12月27日 星期二 13:38

limodou limodou at gmail.com
Tue Dec 27 13:38:29 HKT 2005

在 05-12-20,Guofeng Yuan<loocoo at gmail.com> 写道:
> 我想用python做两个共享软件,现在主要的功能已经基本完成了,但不知道软件注册这一块怎么做,请各位老大指点指点!
>
用c实现,封装为模块,在python中调用。或直接找一找现成的模块,使用ctypes进行调用。然后再使用py2exe打包。

--
I like python!
My Blog: http://www.donews.net/limodou
NewEdit Maillist: http://groups.google.com/group/NewEdit

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年12月27日 星期二 14:22

Kevin Yuan farproc at gmail.com
Tue Dec 27 14:22:08 HKT 2005

说句实在话,python做这个不太合适。

在05-12-20,Guofeng Yuan <loocoo at gmail.com> 写道:
>
> 我想用python做两个共享软件,现在主要的功能已经基本完成了,但不知道软件注册这一块怎么做,请各位老大指点指点!
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051227/825570fb/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年12月27日 星期二 15:22

nEO (a.k.a. gentoo.cn) gentoo.cn at gmail.com
Tue Dec 27 15:22:21 HKT 2005

在 05-12-20,Guofeng Yuan<loocoo at gmail.com> 写道:
> 我想用python做两个共享软件,现在主要的功能已经基本完成了,但不知道软件注册这一块怎么做,请各位老大指点指点!
>
把你的Serial Number的代码用C写成模块
import进来

--
I'm the one, powered by nEO

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年12月27日 星期二 21:04

flya flya flyaflya at gmail.com
Tue Dec 27 21:04:51 HKT 2005

最好用RSA,用私钥生成注册码,用公钥验证。公钥放在程序里,私钥自己保留,我认为这种这种方式不可能被作出keygen。

在 05-12-20,Guofeng Yuan<loocoo at gmail.com> 写道:
> 我想用python做两个共享软件,现在主要的功能已经基本完成了,但不知道软件注册这一块怎么做,请各位老大指点指点!
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to
> python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to
> python-chinese-request at lists.python.cn
> Detail Info:
> http://python.cn/mailman/listinfo/python-chinese
>
>

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年12月28日 星期三 10:43

Xie Yanbo xieyanbo at gmail.com
Wed Dec 28 10:43:10 HKT 2005

On 12/27/05, flya flya <flyaflya at gmail.com> wrote:
> 最好用RSA,用私钥生成注册码,用公钥验证。公钥放在程序里,
> 私钥自己保留,我认为这种这种方式不可能被作出keygen。

黑掉RSA生成自己的key是不太可能,但还是可以从应用下手,找到验证
代码,然后直接跳过验证,返回认证通过呀。加密解密是相对的,俗话
说,道高一尺,魔高一丈。

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年12月28日 星期三 11:11

Jacob Fan jacob at exoweb.net
Wed Dec 28 11:11:05 HKT 2005

On 二, 2005-12-27 at 15:22 +0800, nEO (a.k.a. gentoo.cn) wrote:
> 在 05-12-20,Guofeng Yuan<loocoo at gmail.com> 写道:
> > 我想用python做两个共享软件,现在主要的功能已经基本完成了,但不知道软件注册这一块怎么做,请各位老大指点指点!
> >
> 把你的Serial Number的代码用C写成模块
> import进来
这个模块一定要和解释器静态连接在一起, 而且还要使用一些加壳程序,否则很容
易破解的.


[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年12月28日 星期三 11:16

Jacob Fan jacob at exoweb.net
Wed Dec 28 11:16:04 HKT 2005

On 二, 2005-12-27 at 21:04 +0800, flya flya wrote:
> 最好用RSA,用私钥生成注册码,用公钥验证。公钥放在程序里,私钥自己保留,我认为这种这种方式不可能被作出keygen。
你的验证程序本身如果被破掉, RSA还是不顶事啊.
> 在 05-12-20,Guofeng Yuan<loocoo at gmail.com> 写道:
> > 我想用python做两个共享软件,现在主要的功能已经基本完成了,但不知道软件注册这一块怎么做,请各位老大指点指点!
> >



[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号