• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

username and role protection in C#

I have a a web app that uses single sign on but it still needs to read my web app to see if a user is allowed on the site.

Would hashing the username and role be enough security? What other methods are there? It's gonna be working with a Oracle database.

Edit: Looks like I need to do something with Cryptographic Hashing?
 
Originally posted by: Dhaval00
Why would you want to reinvent the wheel? Look up OracleMembershipProvider on Oracle's Website.

Sometimes getting experience is a valuable part of programming. It's great to have libraries and functions already built in, but you can grow in your skill set a lot if you "reinvent the wheel" sometimes.

On the other side of that, he might not have known about OracleMembershipProvider.
 
Back
Top