Passwords are widely used in our lives: for ATMs, online forum logins, mobile device unlock and door access. Everyone cares about password security. H...
分类:
其他好文 时间:
2014-10-09 01:34:37
阅读次数:
302
Windows 从 Vista 開始又一次改动了其系统的权限管理机制,于是如今就会碰到一些 xp 能过而 win7 不能过的代码。比方 Service 程序和一般应用程序用共享内存的方式来通讯,CreateFileMapping 的第二个參数我们往往都是填 NULL 使用默认权限(Service 的...
分类:
其他好文 时间:
2014-10-09 00:22:47
阅读次数:
196
1:引入命名空间(Imports)Imports System.ExceptionImports System.Data.SqlClientImports System.Security.CryptographyImports System.Text.StringBuilder2:实例化类Dim m...
分类:
Web程序 时间:
2014-10-07 20:40:14
阅读次数:
241
首先配置好web.config
<add name="BookDbContext" connectionString=" Data Source=.\SQLEXPRESS;Initial Catalog=sales;Persist Security Info=True;Integrated Security=SSPI;"
providerName="System.Data...
分类:
Web程序 时间:
2014-10-07 01:43:42
阅读次数:
261
New XAMPP security concept:Access to the requested directory is only available from the local network.This setting can be configured in the file “http...
分类:
其他好文 时间:
2014-10-06 18:03:00
阅读次数:
262
1 using System; 2 using System.IO; 3 using System.Security.Cryptography; 4 using System.Text; 5 6 namespace Utility 7 { 8 /// 9 //...
分类:
其他好文 时间:
2014-10-06 17:24:00
阅读次数:
338
import java.security.GeneralSecurityException;import java.util.Properties;import javax.mail.Folder;import javax.mail.Message;import javax.mail.Messagi...
分类:
编程语言 时间:
2014-10-06 16:01:10
阅读次数:
412
using System;using System.Collections.Generic;using System.Linq;using System.Security.Cryptography;using System.Text; public class RSA { ...
分类:
其他好文 时间:
2014-10-05 17:50:28
阅读次数:
251
添加虚拟用户口令文件vi/etc/vsftpd/login.txtyjlyjlbdlbdl......这个文件第一行用户名,第二行为密码。2.生成虚拟用户口令文件。这个过程需要安装一个db_utilsyuminstalldb_utilsdb_load–T–thash–f/etc/vsftpd/login.txt/etc/vsftpd/login.db3.编辑vsftpd的认证文件。在/e..
分类:
其他好文 时间:
2014-10-05 03:50:48
阅读次数:
368
文中的Random即:java.util.Random,ThreadLocalRandom 即:java.util.concurrent.ThreadLocalRandomSecureRandom即:java.security.SecureRandomQ:Random是不是线程安全的?A:Rando...
分类:
编程语言 时间:
2014-10-05 01:40:17
阅读次数:
143