radius开放源码,用C写的,广泛用于认证服务器、认证计费。

源代码在线查看: password_generator.jsc

软件大小: 2158 K
上传用户: Sundaymorn
关键词: radius 开放源码 认证服务器 计费
下载地址: 免注册下载 普通下载 VIP

相关代码

												/*******************************************************				* Random Password Generator JavaScript				* 				* This script is free as long as original credits remain.				********************************************************/								// Use the following variables for password characters				// and length								  var characters="0123456789abcdefghijklmnopqrstuvwxyz"								  var passwordlength=0								function generatepassword(object, plength) {				// This function will build a string using randomly				// generated characters.								  var password = ""				  var n = 0				  var randomnumber = 0				  passwordlength=plength				  while( n < passwordlength ) {				     n ++				     randomnumber = Math.floor(characters.length*Math.random());				     password += characters.substring(randomnumber,randomnumber + 1)				  }								// Display the word inside the form text box								  object.value = password				}								// -->							

相关资源