Share via

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 | C#
Developer technologies | C#

An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.

Developer technologies | ASP.NET Core | Other
0 comments No comments

1 answer

Sort by: Most helpful
  1. Bruce (SqlWork.com) 84,086 Reputation points
    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.

    Was this answer helpful?

    0 comments No comments

Your answer

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