Encryption to make the password more secure [CFS encoding encryption]

Source: Internet
Author: User
Tags string back
Security | Encryption How do you store your password in a repository? Is it in a pure text way? Do you know how dangerous this is to security? When the person attacking your website can open the library browse, the code in the library is in plain text. Is that the way you want it, based on security considerations? What can I do to make others see the data in the library, and not know where to store the code?

Do you know how to solve the above problem? This article is going to tell you how to encrypt your password and deal with the cipher string, even if it is open, no one can guess the original password! First, let's look at a group of strings:

27b827277c70e88dd87e3057bfbe8f

This is the result of encrypting the cipher, do you know what the string is before you encrypt it? It is actually "test". It's not a suggestion! After the processing of strings, and the original string is completely different, I do not say you guessed it? If the person who decides the password does not say, this password is forever a secret!

After all, it starts with the original string, you may be afraid of someone using reverse engineering to change the string back to the original password, which you don't have to worry about, this code is "single", not reverse engineering to restore! Once you have encrypted your password and then deposited it in your data library, your password will be protected! When compared to the password, encrypt the user's password and then compare it to the data library. I've been talking a lot and now I'm telling you how to write this program.

We use the encryption method "CFS coded encryption function library" to download its functions containing files in the ASP technical plaza → file download → related components → library of letters. The encryption method created by ASP technology is different from other encryption methods on the market! Download the file as a zip file, and decompress to the same catalogue as your ASP.

<!--#include file= "Codefun.fun"-->

This is used to add a function file to your ASP, please add it to the ASP, and then use its encoding function.

Use of the Encoding function Cfsencode ():

Var = Cfsencode (string source)

Example:

<%dim Sourcedim var1source = "Test" VAR1 = Cfsencode (Source) Response.Write var1%>


Perform the results:

27b827277c70e88dd87e3057bfbe8f
<%
'********************************************************************************
'* *
' * CFS Encode Function *
'* *
' * Produced by Asp-zone *
'* *
' * Main website is located at *
' * http://asp.diy.com.tw/*
'* *
' * e-mail: *
' * thiefghost@games.com.tw *
'* *
' * Use this function: *
' * <!--#include file= "Codefun.fun"--> *
'* *
' * 2001/8/3 *
'* *
'********************************************************************************

' Encode Function
Function Cfsencode (CODESTR)

Dim Codelen
Dim Codespace
Dim Newcode

Codelen = 30
Codespace = Codelen-len (CODESTR)

If not Codespace < 1 Then
For CECR = 1 to Codespace
Codestr = codestr & Chr (21)
Next
End If

Newcode = 1

Dim Been
For CECB = 1 to Codelen
Been = Codelen + ASC (Mid (codestr,cecb,1)) * CECB
Newcode = Newcode * Been
Next

Codestr = Newcode
Newcode = Empty

For CEC = 1 to Len (CODESTR)
Newcode = Newcode & Cfscode (Mid (codestr,cec,3))
Next

For CEC = to Len (newcode)-2
Cfsencode = Cfsencode & Mid (newcode,cec,1)
Next

End Function


Function Cfscode (Word)
for cc = 1 to Len (Word)
Cfscode = Cfscode & Asc (Mid (word,cc,1))
Next
Cfscode = Hex (Cfscode)
End Function

%>



Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.