100+ results for '"String password"'

Not the results you expected?

Regression657.java (git://pkgs.fedoraproject.org/resteasy) Java · 366 lines

274

275 @Override

276 public Boolean update(@PathParam("id") String id, @QueryParam("adaId") String adaId, @QueryParam("name") String name, @QueryParam("surname") String surname, @QueryParam("address") String address, @QueryParam("city") String city, @QueryParam("country") String country, @QueryParam("zipcode") String zipcode, @QueryParam("email") String email, @QueryParam("phone") String phone, @QueryParam("phone") String timezone)

277 {

278 return null;

280

281 @Override

282 public Boolean updatePassword(@PathParam("username") String username, List<String> passwords)

283 {

284 return null;

286

287 @Override

288 public Boolean create(@QueryParam("email") String email, @QueryParam("password") String password, @QueryParam("username") String username)

289 {

290 return null;

ApplicationStrings.Designer.cs (https://itssp.svn.codeplex.com/svn) C# · 253 lines

201 public static string OldPasswordLabel {

202 get {

203 return ResourceManager.GetString("OldPasswordLabel", resourceCulture);

204 }

205 }

208 /// Looks up a localized string similar to Password confirmation:.

209 /// </summary>

210 public static string PasswordConfirmationLabel {

211 get {

212 return ResourceManager.GetString("PasswordConfirmationLabel", resourceCulture);

217 /// Looks up a localized string similar to Password:.

218 /// </summary>

219 public static string PasswordLabel {

220 get {

221 return ResourceManager.GetString("PasswordLabel", resourceCulture);

IAuthenticator.cs (http://owasp-esapi-classicasp.googlecode.com/svn/trunk/) C# · 198 lines

86 ///

87 /// </returns>

88 IUser CreateUser(string accountName, string password1, string password2);

89

90 /// <summary> Generates a cryptographically strong password.

144 /// <returns> The hashed password.

145 /// </returns>

146 string HashPassword(string password, string accountName);

147

148 /// <summary> Removes the account for the list of available account.

176 ///

177 /// </returns>

178 void VerifyPasswordStrength(string oldPassword, string newPassword);

179

180 /// <summary> Verifies the account exists.

ConnectionString.cs (https://entlib.svn.codeplex.com/svn) C# · 233 lines ✨ Summary

This C# class, ConnectionString, constructs a connection string by inserting a username and password into a template. It provides methods to get and set the username and password from the connection string, as well as create a new connection string with a user ID and password. The class also removes credentials from the connection string.

36 /// <param name="passwordTokens">The password tokens that can be parsed out of the conection string.</param>

37 public ConnectionString(string connectionString, string userIdTokens, string passwordTokens)

38 {

39 if (string.IsNullOrEmpty(connectionString)) throw new ArgumentException(Resources.ExceptionNullOrEmptyString, "connectionString");

40 if (string.IsNullOrEmpty(userIdTokens)) throw new ArgumentException(Resources.ExceptionNullOrEmptyString, "userIdTokens");

41 if (string.IsNullOrEmpty(passwordTokens)) throw new ArgumentException(Resources.ExceptionNullOrEmptyString, "passwordTokens");

42

43 this.connectionString = connectionString;

135 int pwdEPos = lowConnString.IndexOf(CONNSTRING_DELIM, pwdMPos);

136 connectionString = connectionString.Substring(0, pwdMPos) + value + connectionString.Substring(pwdEPos);

137

138 //_connectionStringNoCredentials = RemoveCredentials(_connectionString);

171 /// The connection string to format.

172 /// </param>

173 public ConnectionString CreateNewConnectionString(string connectionStringToFormat)

174 {

175 return new ConnectionString(connectionStringToFormat, userIdTokens, passwordTokens);

AsyncOAuthSupport.java (git://github.com/yusuke/twitter4j.git) Java · 130 lines

53 * @since Twitter4J 3.0.0

54 */

55 void getOAuthRequestTokenAsync(String callbackURL, String xAuthAccessType);

56

57

67 * @since Twitter4J 3.0.0

68 */

69 void getOAuthRequestTokenAsync(String callbackURL, String xAuthAccessType, String xAuthMode);

70

71

126 * @since Twitter 3.0.0

127 */

128 void getOAuthAccessTokenAsync(String screenName, String password);

129

130 }

VDialerConfiguration.cs (https://vdialer.svn.codeplex.com/svn) C# · 274 lines

38 private string _userName = String.Empty;

39 private string _password = String.Empty;

40 private bool _showDialog = true;

41 private bool _showDialogWait = true;

86 }

87

88 public string Password {

89 get { return _password; }

135 public bool ConfigurationValid {

136 get {

137 return ((!String.IsNullOrEmpty(_userName)) && (!String.IsNullOrEmpty(_password)) && (!String.IsNullOrEmpty(_ownNumber)));

138 }

139 }

171 _userName = (string)key.GetValue(Properties.Resources.REG_KEY_USERNAME, String.Empty);

172 _password = (string)key.GetValue(Properties.Resources.REG_KEY_PASSWORD, String.Empty);

173

174 if ((!String.IsNullOrEmpty(_userName)) && (!String.IsNullOrEmpty(_password))) {

BtsAdministration.cs (https://BizTalkConfigLoader.svn.codeplex.com/svn) C# · 244 lines

51

52 #region Host instances

53 public static void AddHostInstance(string servername, string hostname, string username, string password, bool startInstance)

54 {

55 //PutOptions options = new PutOptions();

122

123 #region Adapters and handlers

124 public static void AddAdapter(string name, string type, string comment)

125 {

126 ManagementObject objInstance = null;

230 }

231

232 private static bool ObjectExists(ManagementClass objClass, string key, string value, string key2, string value2)

233 {

234 foreach (ManagementObject obj in objClass.GetInstances())

Cripto.cs (https://mytripmvc.svn.codeplex.com/svn) C# · 170 lines

78 return ms.ToArray();

79 }

80 private static string Encrypt(string data,string password)

81 {

82 try

91 return br.ReadBytes((int)br.BaseStream.Length);

92 }

93 private static string Decrypt(string data,string password)

94 {

95 try

101 catch { return "null"; }

102 }

103 private static CryptoStream InternalDecrypt(byte[] data,string password)

104 {

105 SymmetricAlgorithm sa = Rijndael.Create();

122 string user = CoreSetting.User();

123 string password = CoreSetting.Password();

124

125 string newkey=Guid.NewGuid().ToString();

PasswordRecord.java (git://pkgs.fedoraproject.org/firefox) Java · 185 lines

25 public static final String PAYLOAD_PASSWORD_FIELD = "passwordField";

26

27 public PasswordRecord(String guid, String collection, long lastModified, boolean deleted) {

28 super(guid, collection, lastModified, deleted);

29 this.ttl = PASSWORDS_TTL;

50 public String usernameField;

51 public String passwordField;

52 public String encryptedUsername;

94 this.encryptedUsername = payload.getString(PAYLOAD_USERNAME);

95 this.encryptedPassword = payload.getString(PAYLOAD_PASSWORD);

96 this.usernameField = payload.getString(PAYLOAD_USERNAME_FIELD);

97 this.passwordField = payload.getString(PAYLOAD_PASSWORD_FIELD);

98 }

99

RemotingConfigBean.java (git://github.com/Chorus-bdd/Chorus.git) Java · 220 lines

43 private String userName;

44 private String password;

45

46 @Override

62 public void setConnection(String connection) {

63 String[] vals = String.valueOf(connection).split(":");

64 if (vals.length != 3) {

65 throw new ConfigValidatorException(

192 order = 80

193 )

194 public void setPassword(String password) { this.password = password; }

195

196

214 ", connectionAttemptMillis=" + connectionAttemptMillis +

215 ", userName=" + userName +

216 ", password=" + password == null ? "not set" : "*******" +

217 ", scope=" + scope +

218 '}';

AuthUser.java (git://github.com/hudec/sql-processor.git) Java · 478 lines

71 }

72

73 private String password;

74

75 public String getPassword() {

77 }

78

79 public void setPassword(final String password) {

80 this.password = password;

81 }

82

83 public AuthUser _setPassword(final String password) {

84 this.password = password;

388 }

389

390 private Map<String, String> operators = new java.util.HashMap<String, String>();

391

392 @JsonIgnore

UserContract.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 345 lines

223 * Specifies password.

224 * @param password User Password. If no value is provided, a default password is generated

225 * @return the next definition stage

226 */

227 WithCreate withPassword(String password);

228 }

229

325 * Specifies password.

326 * @param password User Password. If no value is provided, a default password is generated

327 * @return the next update stage

328 */

329 Update withPassword(String password);

330 }

331

AccountCacheModel.java (git://github.com/liferay/liferay-portal.git) Java · 414 lines

65

66 @Override

67 public String toString() {

68 StringBundler sb = new StringBundler(53);

204 if (password == null) {

205 accountImpl.setPassword(StringPool.BLANK);

206 }

207 else {

209 }

210

211 accountImpl.setSavePassword(savePassword);

212

213 if (signature == null) {

403 public String login;

404 public String password;

405 public boolean savePassword;

ConfigServerGitProperty.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 278 lines

51 @JsonProperty(value = "password")

52 private String password;

53

54 /**

181 * @return the password value

182 */

183 public String password() {

184 return this.password;

188 * Set password of git repository basic auth.

189 *

190 * @param password the password value to set

191 * @return the ConfigServerGitProperty object itself.

192 */

193 public ConfigServerGitProperty withPassword(String password) {

194 this.password = password;

DbConnectionParameter.cs (https://sqtpp.svn.codeplex.com/svn) C# · 451 lines

70 PropertyDescriptor pdDatasource = pdCollection["DatasourceAddress"];

71 TypeConverter datasourceConverter = pdDatasource.Converter;

72 StringLookupConverter datasourceLookupConverter = (StringLookupConverter)datasourceConverter;

73 datasourceLookupConverter.GetLookupValues += new EventHandler<StringLookupGetValuesEventArgs>( DatasourceAddress_GetLookupValues );

248 [Category( "Database" )]

249 [XmlIgnore]

250 public string Password

251 {

252 get { return this.authentication.Password; }

256 value = string.Empty;

257

258 if ( string.Equals( this.authentication.Password, value ) )

259 return;

260

317 public override string ToString()

318 {

319 StringBuilder sb = new StringBuilder();

320 sb.Append( "Provider=" ).Append( Provider );

321

VirtualMachineEncryptionOperationsTests.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 77 lines

12

13 public class VirtualMachineEncryptionOperationsTests extends ComputeManagementTest {

14 private String rgName = "";

15 private Region region = Region.US_EAST;

16

32 //

33 // KeyVault Resource ID

34 String keyVaultId = "KEY_VAULT_ID_HERE";

35 // Azure AD service principal client (application) ID

36 String aadClientId = "AAD_APPLICATION_ID_HERE";

42 final String uname = "juser";

43 final String password = "123tEst!@|ac";

44 VirtualMachine virtualMachine =

45 computeManager

53 .withLatestLinuxImage("RedHat", "RHEL", "7.2")

54 .withRootUsername(uname)

55 .withRootPassword(password)

56 .withSize(VirtualMachineSizeTypes.STANDARD_D5_V2)

57 .withOSDiskCaching(CachingTypes.READ_WRITE)

Customer.java (git://github.com/magja/magja.git) Java · 408 lines

36 private String email;

37 private String password;

38 private String passwordHash;

203 * the passwordHash to set

204 */

205 public void setPasswordHash(String passwordHash) {

206 this.passwordHash = passwordHash;

263 * the password to set

264 */

265 public void setPassword(String password) {

266 this.password = password;

402 public String toString() {

403 return "Customer [createdAt=" + createdAt + ", email=" + email + ", firstName=" + firstName + ", gender=" + gender + ", groupId=" + groupId + ", lastName="

404 + lastName + ", middleName=" + middleName + ", password=" + password + ", passwordHash=" + passwordHash + ", prefix=" + prefix + ", storeId=" + storeId

405 + ", suffix=" + suffix + ", websiteId=" + websiteId + ", id=" + id + ", properties=" + properties + "]";

406 }

MailSender.cs (https://hg01.codeplex.com/dotnetcommon1) C# · 0 lines

17 {

18

19 public static void Send(string tomail, string bccmail, string subject, string body, params string[] files)

20 {

21 Send(SmtpConfig.Create().SmtpSetting.Sender, tomail, bccmail, subject, body, true, Encoding.Default, true, files);

23

24

25 public static void Send(string frommail, string tomail, string bccmail, string subject,

26 string body, bool isBodyHtml, Encoding encoding, bool isAuthentication, params string[] files)

47 /// <param name="isAuthentication"></param>

48 /// <param name="files"></param>

49 public static void Send(string server, string username, string password, string frommail, string tomail, string ccmail, string bccmail, string subject,

50 string body, bool isBodyHtml, Encoding encoding, bool isAuthentication, params string[] files)

112 }

113

114 public static void Send(string Recipient, string Sender, string Subject, string Body)

115 {

116 Send(Sender, Recipient, "", Subject, Body, true, Encoding.UTF8, true, null);

WebExSiteServiceClp.java (git://github.com/liferay/liferay-plugins.git) Java · 346 lines

60 "long", "java.lang.String", "java.lang.String",

61 "java.lang.String", "java.lang.String", "java.lang.String",

62 "long", "com.liferay.portal.kernel.service.ServiceContext"

63 };

67 _methodParameterTypes8 = new String[] {

68 "long", "java.lang.String", "java.lang.String",

69 "java.lang.String",

250 java.lang.String apiURL, java.lang.String login,

251 java.lang.String password, java.lang.String partnerKey, long siteKey,

252 com.liferay.portal.kernel.service.ServiceContext serviceContext)

253 throws com.liferay.portal.kernel.exception.PortalException {

293 public void updateWebExSite(long webExSiteId, java.lang.String apiURL,

294 java.lang.String login, java.lang.String password,

295 com.liferay.portal.kernel.service.ServiceContext serviceContext)

296 throws com.liferay.portal.kernel.exception.PortalException {

User.cs (https://aspnetvnportal.svn.codeplex.com/svn) C# · 347 lines

74 // Reset Password By Email and PortalID with random new password.

75 public static string ResetPassword(string email)

76 {

77 // Generate new password.

88 // Reset Password By Email and PortalID with specific password.

89 public static string ResetPassword(string email, string newPassword)

90 {

91 const string spName = "p_SYSTEM_User_ResetPasswordBy_Email_PortalID";

154 // Change Password By Email and PortalID.

155 public static bool ChangePassword(string email, string oldPassword, string newPassword)

156 {

157 const string spName = "p_SYSTEM_User_ChangePassword";

314 // Login By Email and Password and PortalID.

315 public static IdentityUser Login(string email, string password)

316 {

317 const string spName = "p_SYSTEM_User_Login";

GoogleMailUsersHook.java (git://github.com/liferay/liferay-plugins.git) Java · 171 lines

48 @Override

49 public void addUser(

50 long companyId, long userId, String password, String firstName,

51 String middleName, String lastName, String emailAddress) {

81 public void deleteEmailAddress(long companyId, long userId) {

82 try {

83 String primaryEmailAddress = _getPrimaryEmailAddress(

84 companyId, userId);

85

109 @Override

110 public void updateBlocked(

111 long companyId, long userId, List<String> blocked) {

112 }

113

135

136 @Override

137 public void updatePassword(long companyId, long userId, String password) {

138 try {

139 String primaryEmailAddress = _getPrimaryEmailAddress(

VirtualServerModification.cs (https://TS3QueryLib.svn.codeplex.com/svn) C# · 125 lines

12 public string WelcomeMessage { get; set; }

13 public int? MaxClients { get; set; }

14 public string Password { get; set; }

15 public string HostMessage { get; set; }

20 public ulong? MaxDownloadTotalBandwidth { get; set; }

21 public ulong? MaxUploadTotalBandwidth { get; set; }

22 public string HostBannerUrl { get; set; }

23 public string HostBannerGraphicsUrl { get; set; }

33 public int? AntiFloodPointsNeededBan { get; set; }

34 public int? AntiFloodBanTime { get; set; }

35 public string HostButtonTooltip { get; set; }

36 public string HostButtonUrl { get; set; }

67 AddToCommand(command, "virtualserver_welcomemessage", WelcomeMessage);

68 AddToCommand(command, "virtualserver_maxclients", MaxClients);

69 AddToCommand(command, "virtualserver_password", Password);

70 AddToCommand(command, "virtualserver_hostmessage", HostMessage);

71

PasswordAuthenticationMethod.cs (https://scorch.svn.codeplex.com/svn) C# · 200 lines

25 private RequestMessage _requestMessage;

26

27 private string _password;

28

29 /// <summary>

48 /// <param name="password">The password.</param>

49 public PasswordAuthenticationMethod(string username, string password)

50 : base(username)

51 {

55 this._password = password;

56

57 this._requestMessage = new RequestMessagePassword(ServiceName.Connection, this.Username, password);

58 }

59

130 // Send new authentication request with new password

131 this._session.SendMessage(new RequestMessagePassword(ServiceName.Connection, this.Username, this._password, eventArgs.NewPassword));

132 }

133 catch (Exception exp)

CertificateInner.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 428 lines

78 @JsonProperty(value = "properties.password")

79 private String password;

80

81 /*

255 * @return the password value.

256 */

257 public String password() {

258 return this.password;

262 * Set the password property: Certificate password.

263 *

264 * @param password the password value to set.

265 * @return the CertificateInner object itself.

266 */

267 public CertificateInner withPassword(String password) {

268 this.password = password;

AccountControllerTest.cs (https://nma.svn.codeplex.com/svn) C# · 406 lines

377 // }

378

379 // public bool ValidateUser(string userName, string password)

380 // {

381 // return (userName == "someUser" && password == "goodPassword");

382 // }

383

384 // public MembershipCreateStatus CreateUser(string userName, string password, string email)

385 // {

386 // if (userName == "duplicateUser")

396 // }

397

398 // public bool ChangePassword(string userName, string oldPassword, string newPassword)

399 // {

400 // return (userName == "someUser" && oldPassword == "goodOldPassword" && newPassword == "goodNewPassword");

AdventureWorks1.designer.cs (https://bindablelinq.svn.codeplex.com/svn) C# · 478 lines

104 private string _Phone;

105

106 private string _PasswordHash;

107

108 private string _PasswordSalt;

141 partial void OnPasswordHashChanged();

142 partial void OnPasswordSaltChanging(string value);

143 partial void OnPasswordSaltChanged();

357 [Column(Storage="_PasswordHash", DbType="VarChar(40) NOT NULL", CanBeNull=false)]

358 public string PasswordHash

359 {

360 get

377 [Column(Storage="_PasswordSalt", DbType="VarChar(10) NOT NULL", CanBeNull=false)]

378 public string PasswordSalt

379 {

380 get

ExecuteXaml.cs (https://active.svn.codeplex.com/svn) C# · 138 lines

25 [Description("Optional password for encrypted XAML file.")]

26 public InArgument<string> Password { get; set; }

27

28 private ActivityConsole console = null;

42 string xamlFileName = XamlFileName.Get(context);

43

44 string password = null;

45 string errorMessage = null;

46 if (XamlFileProviderFactory.IsXamlFileEncrypted(xamlFileName))

47 {

48 password = Password.Get(context);

49 if (string.IsNullOrEmpty(password))

50 {

51 errorMessage = string.Format("The file '{0}' is protected and requires the correct password to open.", xamlFileName);

52 }

53 }

RegistrationDataExtensions.cs (https://SilverlightUGStarter.svn.codeplex.com/svn) C# · 143 lines

17 /// </summary>

18 /// <remarks>

19 /// This gets set on the <see cref="System.Windows.Controls.PasswordBox.PasswordChanged"/> event

20 /// </remarks>

21 [Display(AutoGenerateField = false)]

26 [CustomValidation(typeof(RegistrationData), "CheckPasswordConfirmation")]

27 public string PasswordConfirmation

28 {

29 get

40 }

41

42 public static ValidationResult CheckPasswordConfirmation(string passwordConfirmation, ValidationContext validationContext)

43 {

44 RegistrationData registrationData = (RegistrationData)validationContext.ObjectInstance;

49 }

50

51 return new ValidationResult(ErrorResources.ValidationErrorPasswordConfirmationMismatch, new string[] { "PasswordConfirmation" });

52 }

53 #endregion

ExcelNewFileDialog.cs (https://EpiInfo.svn.codeplex.com/svn) C# · 170 lines

30 public virtual void SetUserName(string userName) { }

31 public virtual void SetPassword(string password) { }

32

33 /// <summary>

34 /// Gets the connection string's description

35 /// </summary>

36 public string ConnectionStringDescription

37 {

38 get

47 }

48

49 private OleDbConnectionStringBuilder dbConnectionStringBuilder = new OleDbConnectionStringBuilder();

50

51 /// <summary>

52 /// Gets or sets the DbConnectionStringBuilder object

53 /// </summary>

54 public DbConnectionStringBuilder DbConnectionStringBuilder

55 {

56 get

VirtualRouterHost.cs (https://virtualrouter.svn.codeplex.com/svn) C# · 239 lines

178 }

179

180 public bool SetPassword(string password)

181 {

182 try

191 }

192

193 public string GetPassword()

194 {

195 try

196 {

197 string passKey = string.Empty;

198 bool isPassPhrase;

199 bool isPersistent;

WSSAlertsHelperTest.java (http://bevy.googlecode.com/svn/trunk/) Java · 112 lines

61 public class WSSAlertsHelperTest extends TestCase {

62

63 String listSoapAddress = null;

64 String sitename = null;

65 String userName = null;

66 String password = null;

67

68 public WSSAlertsHelperTest(String testName) {

77 listSoapAddress = sitename + "/_vti_bin/Alerts.asmx";

78 userName = properties.getProperty("wss.site.username");

79 password = properties.getProperty("wss.site.password");

80 } catch (IOException e) {

81

102

103 int expResult = 0;

104 AlertInfo result = WSSAlertsHelper.getAllAlerts(listSoapAddress, userName, password);

105 // System.out.println(result.getAlerts().getAlert().toString());

Producer.java (http://ibtrading.googlecode.com/svn/trunk/) Java · 133 lines

19 private String user = ActiveMQConnection.DEFAULT_USER;

20 private String password = ActiveMQConnection.DEFAULT_PASSWORD;

21 private String url = ActiveMQConnection.DEFAULT_BROKER_URL;

22 private String subject = null;

23 private boolean topic;

24 private boolean transacted;

28 Session session = null;

29

30 public Producer(String subject, boolean isTopic) {

31 this.subject = subject;

32 this.topic = isTopic;

93 }

94

95 public void setPassword(String pwd) {

96 this.password = pwd;

VirtualHost.java (git://pkgs.fedoraproject.org/qpid-cpp) Java · 103 lines

48 VirtualHostConfiguration getConfiguration();

49

50 String getName();

51

52 QueueRegistry getQueueRegistry();

84 BindingFactory getBindingFactory();

85

86 void createBrokerConnection(String transport,

87 String host,

89 String vhost,

90 boolean durable,

91 String authMechanism, String username, String password);

92

93 public BrokerLink createBrokerConnection(UUID id, long createTime, Map<String,String> arguments);

LoginDialogView.java (https://bitbucket.org/act2017/saru-modules.git) Java · 288 lines

32 */

33 public class LoginDialogView extends DialogBox implements LoginDialogPresenter.Display{

34 private final String WRONG_USERNAME_PASSWORD = "User name and password do not match. Please ensure the lowercase or uppercase of characters are right.";

35

36 private static LoginDialogUiBinder uiBinder = GWT.create(LoginDialogUiBinder.class);

110 }

111

112 private Boolean isValidPassword(String password){

113 return true;

114 }

115

116 private void onLogin(String userName, String password){

117 if( !this.isValidUserName(this.userName.getText()) ){

118 this.setHint(this.WRONG_USERNAME_PASSWORD);

SessionManagerTest.java (http://vt-middleware.googlecode.com/svn/) Java · 144 lines

54 @Parameters({ "createEntry10", "webXml" })

55 @BeforeClass(groups = {"servlettest"})

56 public void createLdapEntry(final String ldifFile, final String webXml)

57 throws Exception

58 {

59 final String ldif = TestUtil.readFileIntoString(ldifFile);

60 testLdapEntry = TestUtil.convertLdifToEntry(ldif);

61

100 })

101 @Test(groups = {"servlettest"})

102 public void login(final String user, final String password)

103 throws Exception

104 {

ChannelModification.cs (https://TS3QueryLib.svn.codeplex.com/svn) C# · 87 lines

7 #region Properties

8

9 public string Name { get; set; }

10 public string Topic { get; set; }

11 public string Description { get; set; }

12 public string Password { get; set; }

13 public Codec? Codec { get; set; }

14 public double? CodecQuality { get; set; }

24 public bool? ArUnlimitedMaxFamilyClientsInherited { get; set; }

25 public uint? NeededTalkPower { get; set; }

26 public string NamePhonetic { get; set; }

27 public uint? IconId { get; set; }

28 public uint? ParentChannelId { get; set; }

37 AddToCommand(command, "channel_topic", Topic);

38 AddToCommand(command, "channel_description", Description);

39 AddToCommand(command, "channel_password", Password);

40

41 if (Codec.HasValue)

AccessNewFileDialog.cs (https://EpiInfo.svn.codeplex.com/svn) C# · 274 lines

63 protected virtual void OnCancelClick()

64 {

65 this.dbConnectionStringBuilder.ConnectionString = string.Empty;

66 this.DialogResult = DialogResult.Cancel;

67 this.Close();

89 public virtual void SetUserName(string userName) { }

90 public virtual void SetPassword(string password) { }

91

92 /// <summary>

106 }

107

108 private OleDbConnectionStringBuilder dbConnectionStringBuilder = new OleDbConnectionStringBuilder();

109 /// <summary>

110 /// Gets or sets the DbConnectionStringBuilder object

118 set

119 {

120 dbConnectionStringBuilder = (OleDbConnectionStringBuilder)value;

121 }

122 }

JpaOperations.java (git://github.com/SpringSource/spring-roo.git) Java · 164 lines

38 * @param databaseName the name of the database

39 * @param userName the username to connect to the database

40 * @param password the password to connect to the database

41 * @param profile string with profile where current jpa persistence will be applied.

44 void configureJpa(OrmProvider ormProvider, JdbcDatabase database, Pom module, String jndi,

45 String hostName, String databaseName, String userName, String password, String profile,

46 boolean force);

47

91 JavaType implementsType, String identifierField, JavaType identifierType,

92 String identifierColumn, String sequenceName, IdentifierStrategy identifierStrategy,

93 String versionField, JavaType versionType, String versionColumn,

111 void deleteEntity(JavaType entity);

112

113 SortedSet<String> getDatabaseProperties(String profile);

114

115 /**

ConfigurationManager.cs (https://WpfVkClient.svn.codeplex.com/svn) C# · 408 lines

90 AppId = long.Parse(c.Element("AppId").Value),

91 UserName = c.Attribute("name").Value,

92 Password = c.Element("Password").Value,

93 AccessKey = c.Element("AccessKey").Value,

94 Email = c.Element("Email").Value

247 this.UserName = string.Empty;

248 this.AppId = 0;

249 this.Password = string.Empty;

250 AccessKey = string.Empty;

298 private string m_pass;

299 public string Password

300 {

301 get { return m_pass; }

402 public override string ToString()

403 {

404 return string.Format("ImageCacheSize {0} \n\r DataCaheSize {1} \n\r IsClearImage {2}", ImageCacheMaxSize, DataCacheMaxSize, IsClearImageCache.ToString());

405 }

406 }

UserProvider.java (https://bitbucket.org/belinskiy/openfire4v2.git) Java · 232 lines

43 *

44 * @param username the username.

45 * @param password the plain-text password.

46 * @param name the user's name, which can be <tt>null</tt>, unless isNameRequired is set to true.

47 * @param email the user's email address, which can be <tt>null</tt>, unless isEmailRequired is set to true.

49 * @throws UserAlreadyExistsException if the username is already in use.

50 */

51 User createUser( String username, String password, String name, String email )

52 throws UserAlreadyExistsException;

53

111 * @throws UserNotFoundException if the user could not be found.

112 */

113 void setName( String username, String name ) throws UserNotFoundException;

114

115 /**

ZipClass.cs (https://hg.codeplex.com/prometheus) C# · 307 lines

27 /// <param name="FileName">Gibt den Namen an nach dem die ZIP Datei benannt werden soll</param>

28 /// <param name="OutputDir">Gibt das Ziel fr die ZIP Datei an. Wenn kein Ziel bergeben wurde wird die Datei im Parent Ordner erstellt</param>

29 public void CompressDirectory(string InputDir, string FileName, string OutputDir)

30 {

31 List<string> Files = new List<string>();

82 /// <param name="FileName">Gibt den Namen an nach dem die ZIP Datei benannt werden soll</param>

83 /// <param name="OutputDir">Gibt das Ziel fr die ZIP Datei an. Wenn kein Ziel bergeben wurde wird die Datei im Parent Ordner erstellt</param>

84 public void CompressDirectory(string InputDir, string FileName, string OutputDir, string Password)

85 {

86 List<string> Files = new List<string>();

194 /// <param name="OutputDir">Das Ausgabeverzeichnis wo die ZIP Datei gespeichert werden soll.</param>

195 /// <remarks></remarks>

196 public void CompressFiles(List<string> InputFiles, string FileName, string OutputDir)

197 {

198 FileStream ZFS = new FileStream(OutputDir + "\\" + FileName, FileMode.Create);

PasswordChecker.java (http://vt-middleware.googlecode.com/svn/) Java · 191 lines

81 * requirements of all rules

82 */

83 public boolean checkPassword(final Password password)

84 throws PasswordException

105 final PasswordChecker checker = new PasswordChecker();

106 String password = null;

107 try {

108 if (args.length < 2) {

136 checker.addPasswordRule(rule);

137 } else if ("-u".equals(args[i])) {

138 final PasswordUserIDRule rule = new PasswordUserIDRule(args[++i]);

139 rule.ignoreCase();

140 rule.matchBackwards();

154 if (password == null) {

155 throw new ArrayIndexOutOfBoundsException();

156 } else if (checker.checkPassword(new Password(password))) {

157 System.out.println("Valid password");

GitRemoteSteps.java (git://github.com/JetBrains/intellij-community.git) Java · 178 lines

68 @When("I provide password '(\\S+)'")

69 public void I_provide_password(String password) {

70 myAuthenticator.supplyPassword(password);

77

78 @Then("repository should (not )?be cloned to (\\S+)")

79 public void the_repository_should_be_cloned(String negation, String dir) throws InterruptedException {

80 assertTrue("Clone didn't complete during the reasonable period of time", myCloneCompleted.await(5, TimeUnit.SECONDS));

81 if (negation == null) {

104 @NotNull

105 @Override

106 public String askPassword(@NotNull String url) {

107 myPasswordAsked = true;

133

134

135 void supplyPassword(@NotNull String password) {

136 myPassword = password;

Resources.Designer.cs (https://personalplaner.svn.codeplex.com/svn) C# · 248 lines

14

15 /// <summary>

16 /// A strongly-typed resource class, for looking up localized strings, etc.

17 /// </summary>

18 // This class was auto-generated by the StronglyTypedResourceBuilder

62

63 /// <summary>

64 /// Looks up a localized string similar to Abbrechen.

65 /// </summary>

66 public static string Cancel {

201 /// Looks up a localized string similar to Kennwort.

202 /// </summary>

203 public static string Password {

204 get {

205 return ResourceManager.GetString("Password", resourceCulture);

ServicesViewModel.cs (https://hg.codeplex.com/sherwood) C# · 187 lines

32 public bool VerifyClient()

33 {

34 if (!String.IsNullOrEmpty(ClientCode) && !String.IsNullOrEmpty(Timestamp) && !String.IsNullOrEmpty(Signature))

35 {

36 DateTime utcTimestamp = DateTime.MinValue;

82 public string UserName { get; set; }

83 public string Password { get; set; }

84

85 /// <summary>

91 if (VerifyClient())

92 {

93 if (!string.IsNullOrEmpty(UserName) && !String.IsNullOrEmpty(Password))

94 {

95 return Data.UserAccounts.AuthenticateUser(UserName, Password);

132 Email = Email == null ? "" : Email.Trim().ToLower();

133 UserName = UserName == null ? "" : UserName.Trim().ToLower();

134 if (!String.IsNullOrEmpty(Email) || !String.IsNullOrEmpty(UserName))

135 {

136 return Data.UserAccounts.GetUserAccountByUsernameOrEmail(UserName, Email);

ModifyTaskSequencePackage.cs (https://scorch.svn.codeplex.com/svn) C# · 98 lines

19 private String userName = String.Empty;

20 private String password = String.Empty;

21 private String SCCMServer = String.Empty;

39 String[] propertyNameChoices = CM2012Interop.getSCCMObjectPropertyNames(connection, "SMS_TaskSequencePackage");

40 String[] propertyTypeChoices = new String[] { "StringValue", "DateTimeValue", "IntegerValue", "BooleanValue" };

41

42 foreach (String propertyName in propertyNameChoices)

54 SCCMServer = settings.SCCMSERVER;

55 userName = settings.UserName;

56 password = settings.Password;

57

58 String objID = request.Inputs["Package ID"].AsString();

67 if ((request.Inputs.Contains(propertyName + " : Property Type")) && (request.Inputs.Contains(propertyName + " : Property Value")))

68 {

69 CM2012Interop.modifySCCMTaskSequencePackage(connection, objID, request.Inputs[(propertyName + " : Property Type")].AsString(), propertyName, request.Inputs[(propertyName + " : Property Value")].AsString());

70 }

71 }

UsersController.cs (https://home.svn.codeplex.com/svn) C# · 125 lines

55 [ODataRoute("Login(name={name}, password={password})")]

56 public async Task<IHttpActionResult> Login(string name, string password)

57 {

58 if (name == null || password == null)

61 }

62

63 if (name.Length == 0 || password.Length == 0)

64 {

65 return StatusCode(HttpStatusCode.PreconditionFailed);

67

68 var values = await this.database.Users.Where(u => u.LoginName == name && !u._IsLocked)

69 .Select(u => new { u.DisplayName, u.Role, Password = u._Password })

70 .FirstOrDefaultAsync();

71 if (values == null)

74 }

75

76 if (password != values.Password)

77 {

78 return StatusCode(HttpStatusCode.PreconditionFailed);

UserEntity.java (git://github.com/jersey/jersey.git) Java · 250 lines

63 @NamedQueries({

64 @NamedQuery(name = "UserEntity.findByUserid", query = "SELECT u FROM UserEntity u WHERE u.userid = :userid"),

65 @NamedQuery(name = "UserEntity.findByPassword", query = "SELECT u FROM UserEntity u WHERE u.password = :password"),

66 @NamedQuery(name = "UserEntity.findByUsername", query = "SELECT u FROM UserEntity u WHERE u.username = :username"),

67 @NamedQuery(name = "UserEntity.findByEmail", query = "SELECT u FROM UserEntity u WHERE u.email = :email")

75 @Column(name = "PASSWORD", nullable = false)

76 private String password;

77

78 @Column(name = "USERNAME")

106 * @param password the password of the UserEntity

107 */

108 public UserEntity(String userid, String password) {

109 this.userid = userid;

110 this.password = password;

143 * @param password the new password

144 */

145 public void setPassword(String password) {

146 this.password = password;

XmlRpcHandler.cs (https://git01.codeplex.com/vietnamicare) C# · 170 lines

51 MetaWeblogSetCustomPublishedDate(

52 GetId(context.Response),

53 Convert.ToString(context.Request.Params[0].Value),

54 Convert.ToString(context.Request.Params[1].Value),

77 }

78

79 private void MetaWeblogGetCustomPublishedDate(XRpcStruct postStruct, int itemId, string userName, string password, ICollection<IXmlRpcDriver> drivers) {

80 if (itemId < 1)

81 return;

105 }

106

107 private void MetaWeblogSetCustomPublishedDate(int contentItemId, string appKey, string userName, string password, XRpcStruct content, bool publish, ICollection<IXmlRpcDriver> drivers) {

108 var user = ValidateUser(userName, password);

147 }

148

149 private IUser ValidateUser(string userName, string password) {

150 IUser user = _membershipService.ValidateUser(userName, password);

NodeUpdateUserParameter.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 110 lines

26 @JsonProperty(value = "password")

27 private String password;

28

29 /**

49

50 /**

51 * Get the password is required for Windows Compute Nodes (those created with 'cloudServiceConfiguration', or created with 'virtualMachineConfiguration' using a Windows Image reference). For Linux Compute Nodes, the password can optionally be specified along with the sshPublicKey property. If omitted, any existing password is removed.

52 *

53 * @return the password value

58

59 /**

60 * Set the password is required for Windows Compute Nodes (those created with 'cloudServiceConfiguration', or created with 'virtualMachineConfiguration' using a Windows Image reference). For Linux Compute Nodes, the password can optionally be specified along with the sshPublicKey property. If omitted, any existing password is removed.

61 *

62 * @param password the password value to set

63 * @return the NodeUpdateUserParameter object itself.

64 */

65 public NodeUpdateUserParameter withPassword(String password) {

66 this.password = password;

Preconditions.java (git://github.com/jclouds/jclouds.git) Java · 105 lines

45 }

46

47 public static void checkIps(List<String> ips) {

48 checkNotNull(ips, "Null ip list");

49 for (String ip : ips)

93 }

94

95 private static final int VALID_PASSWORD_MIN_LENGTH = 8;

96 private static final int VALID_PASSWORD_MAX_LENGTH = 50;

97 private static final String PASSWORD_FORMAT = String.format(

98 "[a-zA-Z0-9][^iIloOwWyYzZ10]{%d,%d}", VALID_PASSWORD_MIN_LENGTH - 1, VALID_PASSWORD_MAX_LENGTH);

99 private static final Pattern PASSWORD_PATTERN = Pattern.compile(PASSWORD_FORMAT);

100

101 public static void checkPassword(String password) {

102 checkArgument(PASSWORD_PATTERN.matcher(password).matches(), "Password must be between 8 and 50 characters, "

RandomPasswordLDAP.cs (https://code.google.com/p/appleseedapp/) C# · 239 lines

24 /// The password chars lcase.

25 /// </summary>

26 private const string PasswordCharsLcase = "abcdefgijkmnopqrstwxyz";

27

28 /// <summary>

34 /// The password chars special.

35 /// </summary>

36 private const string PasswordCharsSpecial = "*$-+?_&=!%{}/";

37

38 /// <summary>

39 /// The password chars ucase.

40 /// </summary>

41 private const string PasswordCharsUcase = "ABCDEFGHJKLMNPQRSTWXYZ";

42

43 #endregion

AccountControllerTest.cs (https://informant.svn.codeplex.com/svn) C# · 403 lines

374 }

375

376 public bool ValidateUser(string userName, string password)

377 {

378 return (userName == "someUser" && password == "goodPassword");

379 }

380

381 public MembershipCreateStatus CreateUser(string userName, string password, string email)

382 {

383 if (userName == "duplicateUser")

393 }

394

395 public bool ChangePassword(string userName, string oldPassword, string newPassword)

396 {

397 return (userName == "someUser" && oldPassword == "goodOldPassword" && newPassword == "goodNewPassword");

VssUtilities.cs (https://vsstosvn.svn.codeplex.com/svn) C# · 122 lines

54 }

55

56 public static VSSDatabase OpenDatabase(string database, string username, string password)

57 {

58 VSSDatabase ssDatabase;

62

63 ssDatabase = new VSSDatabase();

64 ssDatabase.Open(string.IsNullOrEmpty(database) ? null : database, string.IsNullOrEmpty(username) ? null : username, string.IsNullOrEmpty(password) ? null : password);

65

66 return ssDatabase;

90 }

91

92 public static bool TestConnection(string database, string username, string password)

93 {

94 Exception ex;

SslConnector.java (git://pkgs.fedoraproject.org/jetty) Java · 342 lines

47 /** String name of keystore password property. @deprecated */

48 @Deprecated

49 public static final String PASSWORD_PROPERTY = "org.eclipse.jetty.ssl.password";

50

51

98 */

99 @Deprecated

100 public abstract void setPassword(String password);

101

102 /* ------------------------------------------------------------ */

115 */

116 @Deprecated

117 public abstract void setKeyPassword(String password);

118

119 /* ------------------------------------------------------------ */

AlumnosDAO.java (https://bitbucket.org/ma-martinez/clon-oscar-marcasdaw.git) Java · 288 lines

62 con = db.getConnection();

63 stmt = con.createStatement();

64 String sql;

65 sql = "SELECT * FROM ALUMNOS";

66 rs = stmt.executeQuery(sql);

70 //Retrieve by column name

71 int id = rs.getInt("id");

72 String nombre = rs.getString("nombre");

73 Date fn = rs.getDate("fecha_nacimiento");

74 Boolean mayor = rs.getBoolean("mayor_edad");

216 }

217

218 public int cambiarPassUser(String codigo, String password) {

219 DBConnection db = new DBConnection();

220 Connection con = null;

LoginAndOutAction.java (http://part2web.googlecode.com/svn/trunk/) Java · 178 lines

46 String userId = userVo.getField("name");

47 String password = userVo.getField("password");

48 if (this.validatorUser(userId, password, errors, request, response)) {

100 }

101

102 private boolean validatorUser(String userId, String password,

103 ActionMessages errors, HttpServletRequest request,

104 HttpServletResponse response) throws IOException {

127 logger.info("user existed? false");

128 return false;

129 } else if (!Password.authenticatePassword(user.getPassword(), password)) {

130 errors.add("login-password-error", new ActionMessage(

149 }

150

151 private String getReturnPageString(int userType, String returnString) {

152 switch (userType) {

153 case Constants.USER_TYPE_ADMIN:

Password.java (http://vt-middleware.googlecode.com/svn/) Java · 486 lines

27 /** Stores the password. */

28 private String password;

29

30 /** Digits in the password [0-9]. */

57

58 /**

59 * This will create a new <code>Password</code> with the supplied password

60 * text.

61 *

72 this.alphanumeric = new StringBuilder(this.password.length());

73 this.nonAlphanumeric = new StringBuilder(this.password.length());

74 this.uppercase = new StringBuilder(this.password.length());

75 this.lowercase = new StringBuilder(this.password.length());

76 this.whitespace = new StringBuilder(this.password.length());

SaltedHash.cs (https://owlpal.svn.codeplex.com/svn) C# · 162 lines

62 /// <param name="password"></param>

63 /// <returns></returns>

64 public SaltedHash Create(string password)

65 {

66 string salt = CreateSalt();

86 /// <param name="salt"></param>

87 /// <returns></returns>

88 public bool IsValid(string password, string salt)

89 {

90 return this.hash.Equals(ComputeHash(salt, password));

130 /// <param name="password"></param>

131 /// <returns></returns>

132 private string ComputeHash(string salt, string password)

133 {

134 return Convert.ToBase64String(new SHA256CryptoServiceProvider()

ComputeNodeOperations.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 585 lines

144 * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.

145 */

146 public void updateComputeNodeUser(String poolId, String nodeId, String userName, String password, DateTime expiryTime) throws BatchErrorException, IOException {

147 updateComputeNodeUser(poolId, nodeId, userName, password, expiryTime, null);

160 * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.

161 */

162 public void updateComputeNodeUser(String poolId, String nodeId, String userName, String password, DateTime expiryTime, Iterable<BatchClientBehavior> additionalBehaviors) throws BatchErrorException, IOException {

163 NodeUpdateUserParameter param = new NodeUpdateUserParameter();

164 param.withPassword(password);

178 * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.

179 */

180 public void updateComputeNodeUser(String poolId, String nodeId, String userName, String sshPublicKey) throws BatchErrorException, IOException {

181 updateComputeNodeUser(poolId, nodeId, userName, sshPublicKey, (Iterable<BatchClientBehavior>) null);

182 }

193 * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service.

194 */

195 public void updateComputeNodeUser(String poolId, String nodeId, String userName, String sshPublicKey, Iterable<BatchClientBehavior> additionalBehaviors) throws BatchErrorException, IOException {

196 NodeUpdateUserParameter param = new NodeUpdateUserParameter();

197 param.withSshPublicKey(sshPublicKey);

WebApp.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 510 lines

325 * @return the next stage of the definition

326 */

327 WithCredentials withPrivateRegistryImage(String imageAndTag, String serverUrl);

328 }

329

337 * @return the next stage of the definition

338 */

339 WithStartUpCommand withCredentials(String username, String password);

340 }

341

471 * @return the next stage of the web app update

472 */

473 WithStartUpCommand withCredentials(String username, String password);

474 }

475

TaskResource.java (git://github.com/liferay/liferay-portal.git) Java · 842 lines

98 public static class Builder {

99

100 public Builder authentication(String login, String password) {

101 _login = login;

102 _password = password;

376 }

377

378 for (Map.Entry<String, String> entry :

379 _builder._headers.entrySet()) {

380

634 }

635

636 for (Map.Entry<String, String> entry :

637 _builder._parameters.entrySet()) {

638

SLAResource.java (git://github.com/liferay/liferay-portal.git) Java · 821 lines

95 public static class Builder {

96

97 public Builder authentication(String login, String password) {

98 _login = login;

99 _password = password;

139

140 for (int i = 0; i < parameters.length; i += 2) {

141 String parameterName = String.valueOf(parameters[i]);

142 String parameterValue = String.valueOf(parameters[i + 1]);

225 }

226

227 for (Map.Entry<String, String> entry :

228 _builder._parameters.entrySet()) {

229

709 }

710

711 for (Map.Entry<String, String> entry :

712 _builder._parameters.entrySet()) {

713

IdentityProviderContract.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 389 lines

61 * @return the passwordResetPolicyName value.

62 */

63 String passwordResetPolicyName();

64

65 /**

209 * @return the next definition stage

210 */

211 WithCreate withPasswordResetPolicyName(String passwordResetPolicyName);

212 }

213

335 * @return the next update stage

336 */

337 Update withPasswordResetPolicyName(String passwordResetPolicyName);

338 }

339

SslConfiguration.java (git://github.com/twitter/cloudhopper-smpp.git) Java · 609 lines

59 private String trustStoreType = "JKS";

60 private transient String keyStorePassword;

61 private transient String trustStorePassword;

353 * @param password The password for the key store

354 */

355 public void setKeyStorePassword(String password) {

356 this.keyStorePassword = password;

367 * @param password The password (if any) for the specific key within the key store

368 */

369 public void setKeyManagerPassword(String password) {

370 this.keyManagerPassword = password;

381 * @param password The password for the trust store

382 */

383 public void setTrustStorePassword(String password) {

384 this.trustStorePassword = password;

DriverDataSourceImpl.java (http://mycila.googlecode.com/svn/) Java · 134 lines ✨ Summary

This Java class implements a custom data source for a testing plugin, allowing users to connect to a database using a specific driver. It provides methods to set up connection properties and isolation levels, and implements the JDBC 4.0’s Wrapper interface for compatibility with other frameworks. The class can be instantiated from a DbDataSource object, which is used to configure the data source.

35 private String username;

36 private String password;

37 private Properties connectionProperties = new Properties();

38 private Isolation defaultIsolation = Isolation.DEFAULT;

47 }

48

49 private DriverDataSourceImpl withPassword(String password) {

50 this.password = password;

66 }

67

68 public Connection getConnection(String username, String password) throws SQLException {

69 return getConnectionFromDriverManager(username, password);

70 }

71

72 private Connection getConnectionFromDriverManager(String username, String password) throws SQLException {

73 if (username != null) {

74 connectionProperties.setProperty("user", username);

Settings.cs (http://sabscripts.googlecode.com/svn/trunk/) C# · 152 lines ✨ Summary

This C# code defines a static class Settings that provides access to application settings for a GUI program called SABSync. It allows users to store and retrieve values for various settings, such as TV root path, video extension, and API key, using a configuration file. The settings can be updated programmatically or through the GUI.

58 }

59

60 internal static string Password

61 {

62 get { return GetConfigValue("password", "", true); }

70 }

71

72 internal static string Priority

73 {

74 get { return GetConfigValue("priority", "", true); }

131 }

132

133 private static string GetConfigValue(string key, object defaultValue, bool makePermanent)

134 {

135 string value;

myprofile.aspx (https://robozzle.svn.codeplex.com/svn) ASP.NET · 143 lines

16 string userArg = Request["user"];

17 string passwordArg = Request["password"];

18 string passwordHashArg = Request["passwordhash"];

19 string updateArg = Request["update"];

20

21 if (passwordHashArg == null && passwordArg != null) passwordHashArg = StatsCommon.HashPassword(passwordArg);

22

23 bool foundUser = false;

51 {

52 RobozzleEntities entities = new RobozzleEntities();

53 User user = entities.User.Where(r => r.Username == userArg && r.Password == passwordHashArg).FirstOrDefault();

54 if (user != null)

55 {

70

71 <form action="" method="post">

72 <input type="hidden" name="passwordhash" value="<%= passwordHashArg %>" />

73 <input type="hidden" name="user" value="<%= userArg %>" />

74 <input type="hidden" name="update" value="1" />

TFSettings.cs (https://lizardtf.svn.codeplex.com/svn) C# · 233 lines

38 }

39

40 public string GetTFSUserName()

41 {

42 if (!string.IsNullOrEmpty(user))

46 }

47

48 private string password;

49

50 public string Password

115 private string x64InstallPath;

116

117 public virtual string X64InstallPath

118 {

119 get { return x64InstallPath; }

InformantServiceDataProvider.cs (https://informant.svn.codeplex.com/svn) C# · 177 lines

79 #region Public Methods

80

81 public void LogUserOnAsync(String username, String password)

82 {

83 Context.LogOnAsyncCompleted += ContextLogOnAsyncCompletedHandler;

131 #region Private Methods

132

133 void IContactsDataProvider.LogOnAsync(string username, string password)

134 {

135 LogUserOnAsync(username, password);

143 LogUserOffAsync();

144 }

145 void ISmsDataProvider.LogOnAsync(string username, string password)

146 {

147 LogUserOnAsync(username, password);

MockListsWS.java (http://google-enterprise-connector-sharepoint.googlecode.com/svn/trunk/) Java · 102 lines

35 protected String username;

36 protected String password;

37

38 /**

57

58 @Override

59 public void setPassword(final String password) {

60 this.password = password;

73 @Override

74 public List<SPDocument> getListItemChangesSinceToken(

75 final ListState list, final String listName, final String viewName,

76 final ListsUtil.SPQueryInfo queryInfo, final String token,

85 final String viewName, final ListsUtil.SPQueryInfo queryInfo,

86 final String webID, Set<String> allWebs) throws RemoteException {

87 return Collections.emptyList();

88 }

ProxyAuthenticator.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 204 lines

63 * @param password Password used in authentication challenges.

64 */

65 public ProxyAuthenticator(String username, String password) {

66 this.challengeHandler = new AuthorizationChallengeHandler(username, password);

100

101 boolean hasBasicChallenge = false;

102 List<Map<String, String>> digestChallenges = new ArrayList<>();

103

104 for (Challenge challenge : response.challenges()) {

167 Map<String, String> authenticationInfoPieces = AuthorizationChallengeHandler

168 .parseAuthenticationOrAuthorizationHeader(proxyAuthenticationInfoHeader);

169 Map<String, String> authorizationPieces = AuthorizationChallengeHandler

170 .parseAuthenticationOrAuthorizationHeader(chain.request().header(PROXY_AUTHORIZATION));

171

190 * outlining that the values didn't match.

191 */

192 private void validateProxyAuthenticationInfoValue(String name, Map<String, String> authenticationInfoPieces,

193 Map<String, String> authorizationPieces) {

SignUp.aspx.cs (http://vatgia.googlecode.com/svn/trunk/) C# · 89 lines

19 string username = _txtTenDangNhap.Text.Trim();

20 string password = FormsAuthentication.HashPasswordForStoringInConfigFile(_txtMatKhau.Text, "MD5");

21 string email = _txtEmail.Text.Trim();

22

23 // kiem tra username co trung khong ?

24 String sql = "SELECT * FROM [NGUOIDUNG] WHERE TenDangNhap=@Username";

25 SqlParameter[] _param = new[] { new SqlParameter("@Username", username) };

26 DataTable dt_username = DataAccess.ExecuteQuery(sql, _param);

34 //kiem tra email co trung khong ?

35

36 String sql2 = "SELECT * FROM [NGUOIDUNG] WHERE Email=@Email";

37 SqlParameter[] _param2 = new[] { new SqlParameter("@Email", email) };

38 DataTable dt_email = DataAccess.ExecuteQuery(sql2, _param2);

54 //kiem tra ma xac nhan va thuc hien luu thong tin vao database

55

56 if (_txtCaptcha.Text.Trim().Equals(Session["strCaptcha"].ToString()))

57 {

58 string sql3 = @"INSERT INTO [NGUOIDUNG] (TenDangNhap, MatKhau, Ten, Email, GioiTinh, NgaySinh, ThanhPho, Nhom)

UserDetail.cs (https://lazarus.svn.codeplex.com/svn) C# · 191 lines

17 protected string mType;

18 protected string mPassword;

19 protected string mDescription;

61 /// Defines the password for the user.

62 /// </summary>

63 public string Password

64 {

65 get

106 mType = DataUtility.GetString( pSource, "user-type" );

107 mPassword = DataUtility.GetString( pSource, "password" );

108 XmlElement vDescription = ( XmlElement )pSource.SelectSingleNode( "lz:description", PersistenceConfig.Namespaces );

109

168 v_oReturn.Name = mName;

169 v_oReturn.Type = mType;

170 v_oReturn.Password = mPassword;

171 v_oReturn.Description = mDescription;

172

SqlQueryCollectorEntry.cs (https://quickmon.svn.codeplex.com/svn) C# · 384 lines

30 {

31 get {

32 string connectionString = ConnectionString;

33 if (connectionString == "" && DataSourceType == Collectors.DataSourceType.SqlServer)

52 /// Full connectionstring. If specified then Server/Database settings are ignored

53 /// </summary>

54 public string ConnectionString { get; set; }

55 /// <summary>

56 /// For OLEDb. The provider name

80 /// Password. Only used for DataSourceType = SqlServer

81 /// </summary>

82 public string Password { get; set; }

83 public int CmndTimeOut { get; set; }

84 public string ApplicationName { get; set; }

366 public static class DataBaseQueryValueReturnTypeConverter

367 {

368 public static DataBaseQueryValueReturnType FromString(string value)

369 {

370 if (value.ToLower() == "rowcount")

AccessControllerTest.java (http://owasp-esapi-java.googlecode.com/svn/trunk/) Java · 359 lines ✨ Summary

This Java code tests an AccessController class, which is part of the OWASP ESAPI library. It simulates user authentication and authorization scenarios to verify that the controller correctly enforces access controls for different types of resources (files, services, etc.). The test cases cover various combinations of user roles and permissions, ensuring that the controller behaves as expected in different scenarios.

45

46 Authenticator authenticator = ESAPI.authenticator();

47 String password = authenticator.generateStrongPassword();

48

49 // create a user with the "user" role for this test

50 User alice = authenticator.getUser("testuser1");

51 if ( alice == null ) {

52 alice = authenticator.createUser( "testuser1", password, password);

53 }

54 alice.addRole("user");

57 User bob = authenticator.getUser("testuser2");

58 if ( bob == null ) {

59 bob = authenticator.createUser( "testuser2", password, password);

60 }

61 bob.addRole("admin");

MultiAccount.java (http://eeplat.googlecode.com/svn/trunk/) Java · 223 lines

29 private String tenancyId;

30 private String password;

31 private String asrole;

56 }

57

58 public void setPassword(String password) {

59 this.password = password;

139

140

141 public static MultiAccount findAccount(String userName,String pwd,String tenantId){

142

143 if(userName==null || pwd==null){

181 tenancyId = tv.getTenant().getValue("name");

182 }

183 String password = paraInstance.getValue("password");

184 password = StringUtil.MD5(password);

Application.java (https://code.google.com/p/give2get/) Java · 265 lines

48

49 // Check session

50 String userid = session.get("userid");

51

52 if (userid != null) {

92 }

93

94 public static void signup(String status) {

95

96 render(status);

106 @Required(message = "Lastname is required") String lastname,

107 @Required(message = "Password is required") String password) throws MailException {

108

109 if (validation.hasErrors()) {

141 }

142

143 public static void login(String email, String password) {

144

145 User user = DAO.login(email, password);

request_handler_cpptoc.cc (http://chromiumembedded.googlecode.com/svn/trunk/) C++ · 397 lines

123 void CEF_CALLBACK request_handler_on_resource_redirect(

124 struct _cef_request_handler_t* self, cef_browser_t* browser,

125 const cef_string_t* old_url, cef_string_t* new_url) {

126 // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING

127

244 int CEF_CALLBACK request_handler_get_download_handler(

245 struct _cef_request_handler_t* self, cef_browser_t* browser,

246 const cef_string_t* mimeType, const cef_string_t* fileName,

247 int64 contentLength, cef_download_handler_t** handler) {

248 // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING

320 if (!username)

321 return 0;

322 // Verify param: password; type: string_byref

323 DCHECK(password);

330 // Translate param: password; type: string_byref

331 CefString passwordStr(password);

332

333 // Execute

BaseSearchIndexablesProvider.java (https://github.com/android/platform_packages_apps_packageinstaller.git) Java · 137 lines

69

70 @NonNull

71 private static String getPassword(@NonNull Context context) {

72 synchronized (sPasswordLock) {

73 SharedPreferences sharedPreferences = Utils.getDeviceProtectedSharedPreferences(

74 context);

75 String password = sharedPreferences.getString(

76 Constants.SEARCH_INDEXABLE_PROVIDER_PASSWORD_KEY, null);

78 password = UUID.randomUUID().toString();

79 sharedPreferences.edit()

80 .putString(Constants.SEARCH_INDEXABLE_PROVIDER_PASSWORD_KEY, password)

81 .apply();

82 }

110 String key = intent.getStringExtra(EXTRA_SETTINGS_SEARCH_KEY);

111 String passwordFromIntent = key.substring(0, PASSWORD_LENGTH);

112 String password = getPassword(context);

ChapAuthenticator.cs (https://hg01.codeplex.com/discutils) C# · 137 lines

34 private string _name;

35 private string _password;

36

37 private int _algorithm;

39 private byte[] _challenge;

40

41 public ChapAuthenticator(string name, string password)

42 {

43 _name = name;

44 _password = password;

45 _state = State.SendAlgorithm;

46 }

98 }

99

100 private static byte[] ParseByteString(string p)

101 {

102 if (!p.StartsWith("0x", StringComparison.OrdinalIgnoreCase))

LoginNewUserPanel.cs (http://mptvseries.googlecode.com/svn/trunk/) C# · 272 lines ✨ Summary

This C# code is for a login panel in a Windows Forms application, specifically designed for creating new user accounts. It handles user input, validates username and password, and creates a new account using an API. The panel also includes features like back button, error handling, and password verification.

26

27 private bool usernameAvailable = true;

28 private string lastCheckedName = "";

29

30 public FitUser ValidatedUser {

57 string username = usernameTextBox.Text;

58 string password = passwordTextBox.Text;

59

60 bool success = FollwitApi.CreateUser(username, password, emailTextBox.Text, "en", privateCheckBox.Checked, ApiUrl);

61

62 if (success) {

63 api = FollwitApi.Login(username, FollwitApi.HashPassword(password), ApiUrl);

64 ValidatedUser = api.User;

65 }

149 createAccountOkButton.Enabled = true;

150

151 if ((passwordTextBox.Text != verifyPasswordTextBox.Text) && verifyPasswordTextBox.Text != "") {

152 statusLabel.ForeColor = Color.Red;

153 statusLabel.Visible = true;

ZipUtils.cs (https://hg01.codeplex.com/patentbutcher) C# · 288 lines

100 /// 压缩后的文件名,全路径格式

101 ///

102 private static bool ZipFileDictory(string FolderToZip, string ZipedFile, String Password)

103 {

104 bool res;

188 /// 压缩后生成的压缩文件名,全路径格式

189 ///

190 public static bool Zip(String FileToZip, String ZipedFile, String Password)

191 {

192 if (Directory.Exists(FileToZip))

214 /// 待解压的文件

215 /// 指定解压目标目录

216 public static void UnZip(string FileToUpZip, string ZipedFolder, string Password)

217 {

218 if (!File.Exists(FileToUpZip))

ConnectionStringDialog.cs (https://EpiInfo.svn.codeplex.com/svn) C# · 363 lines

69 }

70

71 public virtual void SetPassword(string password)

72 {

73 txtPassword.Text = password;

204 dbConnectionStringBuilder.UserID = txtUserName.Text;

205 dbConnectionStringBuilder.Password = txtPassword.Text;

206 }

207

245 //Epi.Data.SqlServer.SqlDatabase db = new SqlDatabase();

246

247 //db.ConnectionString = this.DbConnectionStringBuilder.ToString(); //connectionString;

248

249 //try

319 protected void OnCancelClick()

320 {

321 this.dbConnectionStringBuilder.ConnectionString = string.Empty;

322 this.PreferredDatabaseName = string.Empty;

CustomerModel.cs (http://project-manh-lan.googlecode.com/svn/trunk/) C# · 288 lines

33 [NopResourceDisplayName("Admin.Customers.Customers.Fields.Email")]

34 [AllowHtml]

35 public string Email { get; set; }

36

37 [NopResourceDisplayName("Admin.Customers.Customers.Fields.Password")]

38 [AllowHtml]

39 public string Password { get; set; }

40

41 //form fields & properties

187 [NopResourceDisplayName("Admin.Customers.Customers.RewardPoints.Fields.AddRewardPointsMessage")]

188 [AllowHtml]

189 public string AddRewardPointsMessage { get; set; }

190

191

Authentication.java (git://github.com/woorea/openstack-java-sdk.git) Java · 284 lines

12 public static final class Identity {

13

14 public static final Identity password(String userId, String password) {

15 Identity identity = new Identity();

16 identity.getMethods().add("password");

22 }

23

24 public static final Identity password(String domainName, String username, String password) {

25 Identity identity = new Identity();

26 identity.getMethods().add("password");

79 private String name;

80

81 private String password;

82

83 public Domain getDomain() {

109 }

110

111 public void setPassword(String password) {

112 this.password = password;

MudObjectAttendantTest.java (http://groovymud.googlecode.com/svn/trunk/) Java · 272 lines

45 /*

46 * Test method for

47 * 'org.groovymud.object.registry.MudObjectAttendant.load(String, boolean)'

48 */

49 public void testLoadToRegistry() throws ResourceException, ScriptException, InstantiationException, IllegalAccessException, CompilationFailedException, FileNotFoundException, MalformedURLException {

50 final String scriptName = "/mockScriptName.groovy";

51 final MudObject mudObject = (MudObject) ctrl.getMock();

52

168 }

169 };

170 MockControl scriptCtrl = MockClassControl.createControl(GroovyScriptEngine.class, new Class[] { String.class }, new String[] { new String("file://") });

171 final GroovyScriptEngine eng = (GroovyScriptEngine) scriptCtrl.getMock();

172 eng.getParentClassLoader();

230 String username = "wombat";

231 String upperuname = username.substring(0, 1).toUpperCase() + username.substring(1);

232 String password = "x";

PropertyBindingSupportClassFactoryMethodTest.java (https://github.com/apache/camel.git) Java · 133 lines

110 private String url;

111 private String username;

112 private String password;

113

114 public MyDriver(String url, String username, String password) {

115 this.url = url;

116 this.username = username;

117 this.password = password;

118 }

119

126 }

127

128 public String getPassword() {

129 return password;

Register.java (https://hg.codeplex.com/cp3046team03bj) Java · 174 lines

16 private String name;

17 private String password;

18 private String passwordAgain;

45 }

46

47 public String getPassword() {

48 return password;

49 }

50

51 public void setPassword(String password) {

52 this.password = password;

57 }

58

59 public void setPasswordAgain(String passwordAgain) {

60 this.passwordAgain = passwordAgain;

GenericConnection.java (http://parrot-im.googlecode.com/svn/trunk/) Java · 121 lines

48 public interface GenericConnection {

49

50 public void login(String userID, String password)

51 throws BadConnectionException;

52

68 throws BadConnectionException;

69

70 public void sendMessage(String toUserID, String message)

71 throws BadConnectionException;

72

102 public void createRoom(String room) throws XMPPException;

103

104 public void inviteFriend(String userID, String roomName)

105 throws XMPPException;

106

GenericSQLServerDAL.cs (https://EventScavenger.svn.codeplex.com/svn) C# · 387 lines

100 set { userName = value; }

101 }

102 private string password = string.Empty;

103 public string Password

120 get { return lastError; }

121 }

122 protected string connectionString;

123 public string ConnectionString

143 if (TrustServerCertificate)

144 sqlbuilder.TrustServerCertificate = true;

145 connectionString = sqlbuilder.ConnectionString;

146 }

147 else

157 SetConnection();

158 }

159 public void SetConnection(string sqlServer, string database, string userName, string password)

160 {

161 server = sqlServer;

AccountControllerTest.cs (https://PropertyExpression.svn.codeplex.com/svn) C# · 403 lines

374 }

375

376 public bool ValidateUser(string userName, string password)

377 {

378 return (userName == "someUser" && password == "goodPassword");

379 }

380

381 public MembershipCreateStatus CreateUser(string userName, string password, string email)

382 {

383 if (userName == "duplicateUser")

393 }

394

395 public bool ChangePassword(string userName, string oldPassword, string newPassword)

396 {

397 return (userName == "someUser" && oldPassword == "goodOldPassword" && newPassword == "goodNewPassword");

User.cs (https://nebo.svn.codeplex.com/svn) C# · 497 lines

84 /// Gets or sets the Password the User will use on the server

85 /// </summary>

86 public String Password

87 {

88 get

99 }

100 }

101 private String password = "";

102

103 /// <summary>

453 }

454

455 private static String makeRegexPattern( String wildcardString )

456 {

457 return Regex.Escape( wildcardString ).Replace( @"\*", @".*" ).Replace( @"\?", @"." );

MainForm.cs (https://hg.codeplex.com/freeboxhdvideoplayer) C# · 259 lines

58 string user = "freebox";

59 string password = "";

60 listVideoWorker = new ListVideoWorker(host, port, user, password);

61 listVideoWorker.ProgressChanged += new ProgressChangedEventHandler(worker_ProgressChanged);

62 listVideoWorker.RunWorkerCompleted += new RunWorkerCompletedEventHandler(listVideoWorker_RunWorkerCompleted);

63 deleteVideoWorker = new DeleteVideoWorker(host, port, user, password);

64 deleteVideoWorker.ProgressChanged += new ProgressChangedEventHandler(worker_ProgressChanged);

65 deleteVideoWorker.RunWorkerCompleted += new RunWorkerCompletedEventHandler(deleteVideoWorker_RunWorkerCompleted);

66 playFTPVideoWorker = new PlayVideoWorker(host, port, user, password);

67 playFTPVideoWorker.ProgressChanged += new ProgressChangedEventHandler(worker_ProgressChanged);

68 playFTPVideoWorker.RunWorkerCompleted += new RunWorkerCompletedEventHandler(playFTPVideoWorker_RunWorkerCompleted);

69 downloadVideosWorker = new DownloadVideosWorker(host, port, user, password);

70 downloadVideosWorker.ProgressChanged += new ProgressChangedEventHandler(downloadVideosWorker_ProgressChanged);

71 downloadVideosWorker.RunWorkerCompleted += new RunWorkerCompletedEventHandler(downloadVideosWorker_RunWorkerCompleted);

FtpHandle.cs (https://NitoMVVM.svn.codeplex.com/svn) C# · 255 lines

22 /// <param name="password">The password to use for authentication.</param>

23 /// <param name="flags">The connection flags, such as <see cref="InternetConnectHandle.Flags.Passive"/> for passive FTP.</param>

24 public FtpHandle(InternetHandle parent, string serverName, int serverPort, string username, string password, InternetConnectHandle.Flags flags)

25 : base(parent, serverName, serverPort, username, password, Service.Ftp, flags)

152 /// <param name="failIfExists">Whether to fail if the local file specified by <paramref name="localFile"/> already exists.</param>

153 /// <param name="flags">Additional flags for this action. At least <see cref="GetFileFlags.Ascii"/> or <see cref="GetFileFlags.Binary"/> should be specified.</param>

154 public void GetFile(string remoteFile, string localFile, bool failIfExists, GetFileFlags flags)

155 {

156 UnsafeNativeMethods.FtpGetFile(this.SafeInternetHandle, remoteFile, localFile, failIfExists, flags);

163 /// <param name="remoteFile">The remote path and filename to which to save the file.</param>

164 /// <param name="flags">Additional flags for this action. At least <see cref="PutFileFlags.Ascii"/> or <see cref="PutFileFlags.Binary"/> should be specified.</param>

165 public void PutFile(string localFile, string remoteFile, PutFileFlags flags)

166 {

167 UnsafeNativeMethods.FtpPutFile(this.SafeInternetHandle, localFile, remoteFile, flags);

182 /// <param name="oldName">The old file name.</param>

183 /// <param name="newName">The new file name.</param>

184 public void RenameFile(string oldName, string newName)

185 {

186 UnsafeNativeMethods.FtpRenameFile(this.SafeInternetHandle, oldName, newName);

NotificationHookTestBase.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 151 lines

25 protected static class CreateEmailHookInput {

26 static final CreateEmailHookInput INSTANCE = new CreateEmailHookInput();

27 String name = UUID.randomUUID().toString();

28 String email1 = "simpleuser0@hotmail.com";

62 protected static class CreateWebHookInput {

63 static final CreateWebHookInput INSTANCE = new CreateWebHookInput();

64 String name = UUID.randomUUID().toString();

65 String endpoint = "https://httpbin.org/post";

68 String userName = "test";

69 String password = "testpwd!@#";

70 HttpHeaders httpHeaders = new HttpHeaders()

71 .put("x-contoso-id", "123")

93 // TODO: BUG: Service is not returning headers.

94 // Assertions.assertEquals(CreateWebHookInput.INSTANCE.httpHeaders.getSize(), httpHeaders.getSize());

95 // Map<String, String> headersMap = httpHeaders.toMap();

96 // for (HttpHeader httpHeader : CreateWebHookInput.INSTANCE.httpHeaders) {

97 // Assertions.assertTrue(headersMap.containsKey(httpHeader.getName()));

MailSender.cs (http://jqbird.googlecode.com/svn/trunk/) C# · 181 lines

13 public class MailSender

14 {

15 public static void Send(string server, string sender, string recipient, string subject,

16 string body, bool isBodyHtml, Encoding encoding, bool isAuthentication, params string[] files)

46 }

47

48 public static void Send(string recipient, string subject, string body)

49 {

50 Send(SmtpConfig.Create().SmtpSetting.Server, SmtpConfig.Create().SmtpSetting.Sender, recipient, subject, body, true, Encoding.Default, true, null);

51 }

52

53 public static void Send(string Recipient, string Sender, string Subject, string Body)

54 {

55 Send(SmtpConfig.Create().SmtpSetting.Server, Sender, Recipient, Subject, Body, true, Encoding.UTF8, true, null);

67 {

68

69 List<string> toList = StringPlus.GetSubStringList(StringPlus.ToDBC(to), ',');

70 OpenSmtp.Mail.Smtp smtp = new OpenSmtp.Mail.Smtp(smtpServer, userName, pwd, smtpPort);

71 foreach (string s in toList)

AddNewLedTable.cs (http://cpro-wia.googlecode.com/svn/trunk/) C# · 165 lines

65 {

66 int number;

67 string value = textBox_LedMatrixWidth.Text.ToString();

68 bool result = Int32.TryParse(value, out number);

69 if (result != true)

118 // variables

119 int requestType = 1;

120 string passWord = "123456";

121 int option = 0;

122

123 string strData = requestType.ToString() + "|"

124 + passWord + "|"

125 + option.ToString() + "|";

126

127 string moduleSimID = textBox_LedTableCardID.Text.ToString();

128

129 ConncectToDevice connectToDevice = new ConncectToDevice();

CertificateImpl.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 242 lines

130

131 @Override

132 public String password() {

133 return this.inner().password();

140

141 @Override

142 public String publicKeyHash() {

143 return this.inner().publicKeyHash();

144 }

150

151 @Override

152 public String serverFarmId() {

153 return this.inner().serverFarmId();

154 }

175

176 @Override

177 public CertificateImpl withPassword(String password) {

178 this.inner().withPassword(password);

SocioMembershipProvider.cs (http://virtualstar.googlecode.com/svn/trunk/) C# · 282 lines

41 }

42

43 public override bool ChangePassword(string username, string oldPassword, string newPassword)

44 {

45 throw new NotSupportedException();

46 }

47

48 public override bool ChangePasswordQuestionAndAnswer(string username, string password, string newPasswordQuestion, string newPasswordAnswer)

49 {

50 throw new NotSupportedException();

51 }

52

53 public override MembershipUser CreateUser(string username, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved, object providerUserKey, out MembershipCreateStatus status)

54 {

55 UsuariosCN usuariosCN = new UsuariosCN();

AccountController.cs (https://svnnet.svn.codeplex.com/svn) C# · 280 lines

38

39 [Authorize]

40 public ActionResult ChangePassword(string currentPassword, string newPassword, string confirmPassword)

41 {

42

106 }

107

108 public ActionResult Login(string username, string password, bool? rememberMe)

109 {

110

156 }

157

158 public ActionResult Register(string username, string email, string password, string confirmPassword)

159 {

160

SetupChooseLockPassword.java (git://github.com/CyanogenMod/android_packages_apps_Settings.git) Java · 93 lines

31 * those changes.

32 */

33 public class SetupChooseLockPassword extends ChooseLockPassword {

34

35 public static Intent createIntent(Context context, int quality,

44

45 public static Intent createIntent(Context context, int quality,

46 int minLength, final int maxLength, boolean requirePasswordToDecrypt, String password) {

47 Intent intent = ChooseLockPassword.createIntent(context, quality, minLength, maxLength,

48 requirePasswordToDecrypt, password);

49 intent.setClass(context, SetupChooseLockPassword.class);

84 }

85

86 public static class SetupChooseLockPasswordFragment extends ChooseLockPasswordFragment {

87

88 @Override

UserDetailPresenter.cs (https://hg.codeplex.com/coevery) C# · 130 lines

21 {

22 base.OnSaving();

23 string password = DynamicEntity.Password;

24 if (!string.IsNullOrEmpty(password))

25 {

26 password = BCrypt.Net.BCrypt.HashPassword(password, 4);

27 oldPassword = password;

28 }

29 if (oldPassword == null) oldPassword = password;

30 DynamicEntity.Password = oldPassword;

109 }

110

111 private void RegisterCommand(string groupName, string commandName, string imageName, string overlay, string caption)

112 {

113 var localizedCaption = Properties.Resources.ResourceManager.GetString(caption);

url.proto (git://github.com/chromium/chromium.git) Protocol Buffers · 94 lines

29 // optional but ensure it is followed by a colon in our conversion code if it

30 // is included.

31 optional string scheme = 1;

32

33 enum Slash {

49

50

51 // The [user:password@] part of the URL shown above is called the userinfo.

52 // Userinfo is not mandatory, but if it is included in a URL, then it must

53 // contain a string called user. There is another optional field in userinfo

54 // called the password. If a password is included, the user must be separated

55 // from it by ":". In either case, the userinfo must be separated from the

56 // host by "@". A URL must have a host if it has a userinfo.

59 required string user = 1;

60 optional string password = 2;

61 }

62 optional Userinfo userinfo = 3;

os_crypt_posix.cc (git://github.com/chromium/chromium.git) C++ · 142 lines

42 // password into a system-level key store.

43 // http://crbug.com/25404 and http://crbug.com/49115

44 std::string password = "peanuts";

45 std::string salt(kSalt);

57 } // namespace

58

59 bool OSCrypt::EncryptString16(const base::string16& plaintext,

60 std::string* ciphertext) {

76 // This currently "obfuscates" by encrypting with hard-coded password.

77 // We need to improve this password situation by moving a secure password

78 // into a system-level key store.

79 // http://crbug.com/25404 and http://crbug.com/49115

105 // This currently "obfuscates" by encrypting with hard-coded password.

106 // We need to improve this password situation by moving a secure password

107 // into a system-level key store.

108 // http://crbug.com/25404 and http://crbug.com/49115

demo2.cpp (git://github.com/tomahawk-player/tomahawk.git) C++ · 115 lines ✨ Summary

This C++ code creates a console application that authenticates with the Last.fm web service using a username and password, then retrieves a list of recommended artists based on the authenticated user’s profile. It handles errors and exceptions, and prints output to stderr. The authentication process is done manually due to security concerns.

38 lastfm::ws::ApiKey =

39 lastfm::ws::SharedSecret =

40 QString password =

41

42 ////// Usually you never have to construct an Last.fm WS API call manually

47 // route that feels my trustworthy to them than entering their password

48 // into some random app they just downloaded... ;)

49 QMap<QString, QString> params;

50 params["method"] = "auth.getMobileSession";

51 params["username"] = lastfm::ws::Username;

52 params["authToken"] = lastfm::md5( (lastfm::ws::Username + lastfm::md5( password.toUtf8() )).toUtf8() );

53 QNetworkReply* reply = lastfm::ws::post( params );

54

CreateComputerRequest.java (https://github.com/aws/aws-sdk-java.git) Java · 380 lines

47 * </p>

48 */

49 private String password;

50 /**

51 * <p>

152 */

153

154 public void setPassword(String password) {

155 this.password = password;

182 */

183

184 public CreateComputerRequest withPassword(String password) {

185 setPassword(password);

346 if (other.getPassword() == null ^ this.getPassword() == null)

347 return false;

348 if (other.getPassword() != null && other.getPassword().equals(this.getPassword()) == false)

349 return false;

350 if (other.getOrganizationalUnitDistinguishedName() == null ^ this.getOrganizationalUnitDistinguishedName() == null)

Certificate.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 326 lines

85 * @return the password value.

86 */

87 String password();

88

89 /**

130 * The entirety of the Certificate definition.

131 */

132 interface Definition extends DefinitionStages.Blank, DefinitionStages.WithGroup, DefinitionStages.WithPassword, DefinitionStages.WithCreate {

133 }

134

156 * Specifies password.

157 * @param password Certificate password

158 * @return the next definition stage

159 */

160 WithCreate withPassword(String password);

161 }

162

FeedSynchronizer.java (http://atomojo.googlecode.com/svn/trunk/) Java · 124 lines

31 static int defaultSyncPeriod = 1000*60;

32 static {

33 String value = System.getProperty("org.atomojo.sync.period");

34 if (value!=null) {

35 defaultSyncPeriod = Integer.parseInt(value);

43 String username;

44 String password;

45 XMLRepresentationParser parser = new XMLRepresentationParser();

46

54 this.log = log;

55 this.username = "admin";

56 this.password = "admin";

57 }

58

nsIURI.idl (http://firefox-mac-pdf.googlecode.com/svn/trunk/) IDL · 233 lines ✨ Summary

This IDL (Interface Definition Language) code defines an interface for a Uniform Resource Identifier (URI). It provides access to various components of a URI, such as scheme, username, password, host, port, and path. The interface also includes methods for comparing URIs, resolving relative paths, and cloning the current URI. Additionally, it provides attributes for ASCII-compatible encoding and charset information.

107

108 /**

109 * The prePath (eg. scheme://user:password@host:port) returns the string

110 * before the path. This is useful for authentication or managing sessions.

111 *

135 attribute AUTF8String username;

136 attribute AUTF8String password;

137

138 /**

194

195 /**

196 * This method resolves a relative string into an absolute URI string,

197 * using this URI as the base.

198 *

199 * NOTE: some implementations may have no concept of a relative URI.

200 */

201 AUTF8String resolve(in AUTF8String relativePath);

202

203