











|  |
Dave Wittner
Guest
Registered: Not Yet Location: Country: State: Certifications: Working on:
Total Posts: N/A
|
|
Input masking
I have a table that contains passwords and I want the
passwords hidden. MS Access has an input mask for
passwords so they cannot be read. Does SQL server provide
a similar function? Is is possible to store password data
in a table and have it hidden?
Report this post to a moderator
|
|
12-05-02 11:23 PM
|
|
Russell Fields
Guest
Registered: Not Yet Location: Country: State: Certifications: Working on:
Total Posts: N/A
|
|
Re: Input masking
Dave,
You could encrypt it, there are several passwords available.
You could use column level security to block that column.
You could create a view that excludes the column and grant rights to that
view while revoking rights to the table.
Russell Fields
"Dave Wittner" <dlwittner@northropgrumman.com> wrote in message
news:0a2901c29cb3$17565c90$8ef
82ecf@TK2MSFTNGXA04...
I have a table that contains passwords and I want the
passwords hidden. MS Access has an input mask for
passwords so they cannot be read. Does SQL server provide
a similar function? Is is possible to store password data
in a table and have it hidden?
Report this post to a moderator
|
|
12-05-02 11:23 PM
|
|
Oleg Deshin
Guest
Registered: Not Yet Location: Country: State: Certifications: Working on:
Total Posts: N/A
|
|
Re: Input masking
Hi,
You can use pwdencrypt / pwdencrypt functions.
Example:
select pwdencrypt('123')
select pwdcompare('123',pwdencrypt('1
23'))
Please note, these functions are undocumented and unsupported
Oleg.
"Dave Wittner" <dlwittner@northropgrumman.com> wrote in message
news:0a2901c29cb3$17565c90$8ef
82ecf@TK2MSFTNGXA04...
> I have a table that contains passwords and I want the
> passwords hidden. MS Access has an input mask for
> passwords so they cannot be read. Does SQL server provide
> a similar function? Is is possible to store password data
> in a table and have it hidden?
Report this post to a moderator
|
|
12-06-02 05:23 AM
|
|
|
Forum Rules: Who Can Read The Forum? Any registered user or guest.
Who Can Post New Topics? Any registered user.
Who Can Post Replies? Any registered user.
Changes: Messages can be edited by their author.
Posts: HTML code is OFF. Smilies are ON. vB code is ON. [IMG] code is OFF. |
|
ExamNotes forum archive
|