Masking techniques outside code

Under taker 1 Reputation point
2022-07-12T16:55:04.317+00:00

what are the different masking techniques that can be done outside .net code
Are there any tools available that can be used to mask sensitive data ?
Any thoughts/suggestions will be greatly appreciated

Developer technologies | ASP.NET | ASP.NET Core
Developer technologies | ASP.NET | Other
Developer technologies | C#
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Bruce (SqlWork.com) 78,086 Reputation points Volunteer Moderator
    2022-07-12T18:23:30.923+00:00

    what are your use cases?

    in general the server should never send sensitive data to the client (it should only accept). this requires masking at the server.

    in databases you can use encryption and access rules to protect.

    while not a best practice if you need to round trip security data, then encrypt and store in a hidden field.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.