0C12EF333AD349DC8FD1CF8E529C4A59
Encryption
Started by BlaineSch, Apr 30 2009 10:35 PM
5 replies to this topic
#1
Posted 30 April 2009 - 10:35 PM
I am not sure what type of encryption this is. It is 32 characters. I don't think its md5 because md5 usually doesn't have uppercase letters, sha1 is 40 characters. I am not familiar with any others. I tried googling it but that didn't get far. Does anybody here with a better knowledge of encryptions know which kind this is?
|
|
|
#2
Posted 01 May 2009 - 03:58 AM
doesn't look like an encrypted message to me. I think it could be a key though.
0C12EF33 3AD349DC 8FD1CF8E 529C4A594 * 8 * 4 bits per digit = 128 bit key.
#3
Posted 01 May 2009 - 05:48 AM
Whether MD5 uses uppercase is a style issue on the part of the programmer. It could very easily be MD5, though I would expect slightly fewer letters in that case.
#4
Posted 01 May 2009 - 08:12 AM
actually 128 bits is exactly right for md5, but it's usually put in lowercase, which looks smaller:
0C12EF333AD349DC8FD1CF8E529C4A59
0c12ef333ad349dc8fd1cf8e529c4a59
0C12EF333AD349DC8FD1CF8E529C4A59
0c12ef333ad349dc8fd1cf8e529c4a59
#5
Posted 01 May 2009 - 09:07 AM
I guess they could do a script to make it uppercase but I dont see the place I got it from to be huge on security I think they used its "as is" from what I can tell.
Does anybody have any other ideas as to what it might be?
A key? That actually seems like it might fit. I shall start to google all of this stuff to see if any of these idea work out.
Thanks again guys - if you find anything else that might fit please let me know.
Does anybody have any other ideas as to what it might be?
A key? That actually seems like it might fit. I shall start to google all of this stuff to see if any of these idea work out.
Thanks again guys - if you find anything else that might fit please let me know.
#6
Posted 01 June 2009 - 09:27 PM
you can use the following source code for the Encryption..
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
set crypt = Server.CreateObject("Chilkat.Crypt2")
success = crypt.UnlockComponent("Anything for 30-day trial")
If (success <> 1) Then
Response.Write "<pre>" & Server.HTMLEncode("Crypt component unlock failed") & "</pre>"
End If
password = "secretPassPhrase"
crypt.CryptAlgorithm = "aes"
crypt.CipherMode = "cbc"
crypt.KeyLength = 128
' Generate a binary secret key from a password string
' of any length. For 128-bit encryption, GenEncodedSecretKey
' generates the MD5 hash of the password and returns it
' in the encoded form requested. The 2nd param can be
' "hex", "base64", "url", "quoted-printable", etc.
hexKey = crypt.GenEncodedSecretKey(password,"hex")
crypt.SetEncodedKey hexKey,"hex"
crypt.EncodingMode = "base64"
text = "The quick brown fox jumped over the lazy dog."
' Encrypt a string and return the binary encrypted data
' in a base-64 encoded string.
encText = crypt.EncryptStringENC(text)
Response.Write "<pre>" & Server.HTMLEncode( encText) & "</pre>"
' Decrypt and show the original string:
decryptedText = crypt.DecryptStringENC(encText)
Response.Write "<pre>" & Server.HTMLEncode( decryptedText) & "</pre>"
%>
</body>
</html>


Sign In
Create Account



Back to top









