「Password Generation – 随机密码生成工具」的评论 http://inloveinparis.com/password-generation-tool/ 分享免费、小巧、实用、有趣、绿色的软件 Sat, 18 Oct 2014 13:25:20 +0000 hourly 1 https://wordpress.org/?v=6.8.1 评论者:陈宇 http://inloveinparis.com/password-generation-tool/comment-page-1/#comment-235466 Sat, 18 Oct 2014 13:25:20 +0000 http://inloveinparis.com/password-generation-tool/#comment-235466 回复给 陈宇

@陈宇
#include
#include

int main(void)
{
char password;
FILE *fp=fopen(“F:\\Desktop\\password.txt”,”a+”);
srand(0);
for (unsigned int i=0; i < 9999999; i++)
{
if(i % 15 == 0)
fprintf(fp,"\n");
if(rand() % 4 == 0)
password=rand() % 10 + 48;
else if(rand() % 4 == 1)
password=rand() % 25 + 65;
else if(rand() % 4 == 2)
password=rand() % 25 + 97;
else if(rand() % 100 == 76)
password='_';
else
continue;
fprintf(fp,"%c",password);
}
return 0;
}

]]>
评论者:陈宇 http://inloveinparis.com/password-generation-tool/comment-page-1/#comment-235464 Sat, 18 Oct 2014 13:25:05 +0000 http://inloveinparis.com/password-generation-tool/#comment-235464 自己写代码就能生成,我生成了 133 万个,看代码:

]]>
评论者:某人 http://inloveinparis.com/password-generation-tool/comment-page-1/#comment-131972 Sat, 03 Nov 2012 14:16:57 +0000 http://inloveinparis.com/password-generation-tool/#comment-131972 我想说的就四个字“自缚手脚”。

这个密码生成,都有指导文档的,开源 Mozilla 就有公开的文档说明如何生成适合自己的密码。

不看文档,靠随机,还要额外的管理,忘了怎么办,不是自缚手脚是什么?

]]>
评论者:haha http://inloveinparis.com/password-generation-tool/comment-page-1/#comment-105555 Tue, 20 Mar 2012 07:56:54 +0000 http://inloveinparis.com/password-generation-tool/#comment-105555 没法下载了,提示“404 Not Found”

]]>
评论者:albertni http://inloveinparis.com/password-generation-tool/comment-page-1/#comment-105014 Thu, 15 Mar 2012 13:25:49 +0000 http://inloveinparis.com/password-generation-tool/#comment-105014 这种工具生成密码是可以,但是没法管理啊。
但如果用第三方管理工具比如keepass/lastpass那本身就自带随机密码生成工具……

]]>
评论者:Leo http://inloveinparis.com/password-generation-tool/comment-page-1/#comment-103184 Fri, 02 Mar 2012 02:00:55 +0000 http://inloveinparis.com/password-generation-tool/#comment-103184 回复给 passer

@passer, 新增加一个 115 下载 ^.^

]]>
评论者:Leo http://inloveinparis.com/password-generation-tool/comment-page-1/#comment-103180 Fri, 02 Mar 2012 01:42:44 +0000 http://inloveinparis.com/password-generation-tool/#comment-103180 回复给 小丑

@小丑, 附带什么? 你是说 .NET ? 问题是C++神马的我不会呀~

]]>
评论者:Leo http://inloveinparis.com/password-generation-tool/comment-page-1/#comment-103178 Fri, 02 Mar 2012 01:41:33 +0000 http://inloveinparis.com/password-generation-tool/#comment-103178 回复给 Kino

@Kino, 我英文不好 见谅~

]]>
评论者:路人甲 http://inloveinparis.com/password-generation-tool/comment-page-1/#comment-102902 Tue, 28 Feb 2012 13:42:31 +0000 http://inloveinparis.com/password-generation-tool/#comment-102902 从lastpass换到了keepass+keefox

]]>
评论者:尼陌 http://inloveinparis.com/password-generation-tool/comment-page-1/#comment-102782 Mon, 27 Feb 2012 12:06:29 +0000 http://inloveinparis.com/password-generation-tool/#comment-102782 一直用lastpass,偶尔用keepass备份。

]]>