Need help encode type

Discussion in 'MySQL' started by freeprotect, Jul 1, 2007.

  1. #1
    Hi there
    I need help from you all
    Anyone know what type of encrypt of strings like:
    "miQTCjA28PhTvsuKaKhW4Kih9I4s"
    "FeZo5bwtAuNBVbxyYKxwDqOozKZ4"
    And how to decode it
    Thanks you
     
    freeprotect, Jul 1, 2007 IP
  2. SupernalMedia

    SupernalMedia Well-Known Member

    Messages:
    427
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    110
    #2
    I believe that's just regular MD5 encrypting. There are decoders out there if you search google, but it only decodes simple passwords. And the whole point of encrypting the passwords is so nobody can decrypt them. For security puposes sowwy :p
     
    SupernalMedia, Jul 1, 2007 IP
  3. gibex

    gibex Active Member

    Messages:
    1,060
    Likes Received:
    21
    Best Answers:
    0
    Trophy Points:
    95
    #3
    you can't decode it :D
     
    gibex, Jul 1, 2007 IP
  4. freeprotect

    freeprotect Peon

    Messages:
    56
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    I think not. MD5 is like: c20ad4d76fe97759aa27a0c99bff6710 (32 chars).
    Thanks
     
    freeprotect, Jul 1, 2007 IP
  5. Clark Kent

    Clark Kent Guest

    Messages:
    122
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #5
    mySql Encrypt functions.
    http://dev.mysql.com/doc/refman/5.0/en/encryption-functions.html

    ompression or encryption Uncompression or decryption
    AES_ENCRYT() AES_DECRYPT()
    COMPRESS() UNCOMPRESS()
    ENCODE() DECODE()
    DES_ENCRYPT() DES_DECRYPT()
    ENCRYPT() Not available
    MD5() Not available
    OLD_PASSWORD() Not available
    PASSWORD() Not available
    SHA() or SHA1() Not available
    Not available UNCOMPRESSED_LENGTH()
     
    Clark Kent, Jul 2, 2007 IP
  6. freeprotect

    freeprotect Peon

    Messages:
    56
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Thanks Clark Kent ;)
     
    freeprotect, Jul 2, 2007 IP