TAILIEUCHUNG - Transferring Login Credentials Securely

[ Team LiB ] Recipe Transferring Login Credentials Securely Problem You need to protect login credentials during transmission over the network and when they are stored within a database. Solution Use password hashing and salting with the .NET FormsAuthentication class to control user | Team LiB Recipe Transferring Login Credentials Securely Problem You need to protect login credentials during transmission over the network and when they are stored within a database. Solution Use password hashing and salting with the .NET FormsAuthentication class to control user authentication and access to the application. The schema of table TBL0508 used in this solution is shown in Table 5-5. Table 5-5. TBL0508 schema Column name Data type Length Allow nulls UserName nvarchar 50 No PasswordHash nvarchar 50 No PasswordSalt nvarchar 50 No The sample code contains two event handlers Create Creates a GUID-based salt and generates a hash of the password concatenated with the salt for a user-specified password. The username password hash and salt are inserted into a database. Login Retrieves the salt and the hash of the password and salt from the database for the specified username. The user-entered password is concatenated with the retrieved salt and the hash is generated. If the hash matches the hash retrieved from the database the user is authenticated. The C code is shown in Example 5-8. Example 5-8. File Namespaces variables and constants using System using using using using private const String TABLENAME TBL0508 . . . private void createButton_Click object sender e Create and display the password salt. String passwordSalt .ToString passwordSalt Create and display the password hash. String passwordHash passwordSalt md5 passwordHash Insert UserName with the password hash and salt into the database. String sqlText INSERT TABLENAME UserName PasswordHash PasswordSalt VALUES passwordHash passwordSalt SqlConnection conn new SqlConnection .

TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.