Popular posts from this blog
JWT - Token based authentication
Download JSON Web Token ( JWT ) with Web API . The modern approach for authenticating a user is through token based authentication scheme. It relies on signed tokens which are sent by user to server with each request. you put all claims in json web structure. you sign structure using asymmetric key and encode whole thing in Base64. validating signature,issuer and audience
Design Patterns - SOLID
Download The SOLID principles of Object Oriented Design include these five principles: 1. SRP – Single Responsibility Principle. 2. OCP – Open/Closed Principle. 3. LSP – Liskov Substitution Principle. 4. ISP – Interface Segregation Principle. 5. DIP – Dependency Inversion Principle. 1 .SRP – Single Responsibility Principle. This means that every class, or similar structure, in your code should have only one job to do. The Single Responsibility Principle is one of the SOLID design principles.We can define it in the following ways :- 1. A reason to change: - A class or method should have only one reason to change. ...
Comments
Post a Comment