Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default Hashing Data

    Greetings!

    I need to store some sensitve dater, so wanted to place it in hash format and
    just compare user input to stored data in hash format. But, wondering how I get
    the data into hash format to begin with? We use SQL server 7, and I could not
    find any functions for converting the data into hash format. I know I could use
    CF to querry, convert and re-insert, but this seems to be going against the
    whole idea if the data has to be placed into the DB in readable format.

    So, how does one import into SQL server into a hash format? TIA!

    BaileyBurger Guest

  2. Similar Questions and Discussions

    1. md5 hashing in flex
      Any way to make an MD5 has from a file reference. I need to get the hash of the bytes, similar to the osx terminal command md5 Thanks Dean
    2. Linking data, searching data, and format the data file
      I'm sorta new to flash and integrating data and components...I'm usu. an interface designer. I'm trying to link a combo box to a file doesn't...
    3. Load xml data in sepearate mxml file and Populate data
      I am working on a dynamic Tilelist control that will populate a data and show image under each tile from another mxml file which itself contain de...
    4. Hashing Passwords
      I've just built a CMFL application that accesses information held in a database. One of the tables contains the user login names and passwords that...
    5. File Encryption, Hashing, Decryption
      I have read many postings with developers asking about file encryption, hashing, string encryption, etc. I found an ActiveX component that is only...
  3. #2

    Default Re: Hashing Data

    You could always use the cold fusion hash function.

    Originally posted by: BaileyBurger
    Greetings!

    I need to store some sensitve dater, so wanted to place it in hash format and
    just compare user input to stored data in hash format. But, wondering how I get
    the data into hash format to begin with? We use SQL server 7, and I could not
    find any functions for converting the data into hash format. I know I could use
    CF to querry, convert and re-insert, but this seems to be going against the
    whole idea if the data has to be placed into the DB in readable format.

    So, how does one import into SQL server into a hash format? TIA!



    Dan Bracuk Guest

  4. #3

    Default Re: Hashing Data

    Yes, but thats what I'm trying to avoid. If I'm going to put the data onto a
    internet connected SQL server, I'd want it to be in hash format first, and not
    have it exposed to use CF to convert it. The question is how does one import
    data (from .dbf file) into SQL server and have it convert to a hash format that
    CF can compare to while importing?

    BaileyBurger Guest

  5. #4

    Default Re: Hashing Data

    You'll need a script reference in your DTS upload package that passes the
    relevant value to a CF page that uses the hash function, and returns the hashed
    result. Look into XMLHTTP and CFCs to enable this (e.g. a VBScript using the
    XMLHTTP object calls a CFC that returns your hashed value).

    HTH,

    philh Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139