Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7089257
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T07:53:59+00:00 2026-05-28T07:53:59+00:00

am [writing reading] from a plain text file usernames and passwords, but its an

  • 0

am [writing reading] from a plain text file usernames and passwords, but its an bad way of securing data, is there any other way to do this, most probably by using IV’s, encryption decryption algorithms.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T07:54:00+00:00Added an answer on May 28, 2026 at 7:54 am

    You can encode your passwords with HASHES like SHA1.

    Function getSHA1Hash(ByVal strToHash As String) As String
    
      Dim sha1Obj As New Security.Cryptography.SHA1CryptoServiceProvider
      Dim bytesToHash() As Byte = System.Text.Encoding.ASCII.GetBytes(strToHash)
    
      bytesToHash = sha1Obj.ComputeHash(bytesToHash)
    
      Dim strResult As String = ""
    
      For Each b As Byte In bytesToHash
          strResult += b.ToString("x2")
      Next
    
      Return strResult
    
    End Function
    

    Using it is simple!

    Console.Write(getSHA1Hash("password"))
    

    So whenever you need to authenticate a user, you can take his input password, compute a hash of it using the above function and make sure it’s the same with a simple IF clause:

    if getSHA1Hash(input_password) = HASHED_OLD_PASSWORD then Authenticate()
    

    SHA1 hashes aren’t decryptable without sheer brute forcing every possibility so it’s a pretty safe solution.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When writing or reading from a large file, many of the amateur programs I've
I'm running several scripts which are writing and reading from the same CSV file
I am reading integers from a text file, giving them as input to a
I wrote a program which includes writing and reading from database. When I run
I am little confused... Is it true that reading\writing from several threads all except
I copy and paste code from this URL for creating and reading/writing a proc
I am writing an application which blocks on input from two istreams . Reading
Possible Duplicate: Reading/Writing MS Word files in Python I know there are some libraries
While implementing XML file reading/writing in my application I saw that when I call
I have one process who's reading from a file (using file.read() ) and one

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.