Handling User Authentication in .NET?
        Posted  
        
            by Daniel
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Daniel
        
        
        
        Published on 2010-04-09T02:55:47Z
        Indexed on 
            2010/04/09
            3:23 UTC
        
        
        Read the original article
        Hit count: 425
        
I am new to .NET, and don't have much experience in programming. What is the standard way of handling user authentication in .NET in the following situation?
- In Process A, User inputs ID/Password 
- Process A sends the ID/Password to Process B over a nonsecure public channel. 
- Process B authenticates the user with the recieved ID/Password 
what are some of the standard cryptographic algorithms I can use in above model?
© Stack Overflow or respective owner