Posts by Victor Högemann • 614 points
4 posts
-
41
votes9
answers31327
viewsA: How to hash passwords safely?
Use Salt. That is, an alphanumeric sequence that only your system knows and that you add to passwords before hashing. That alone ends most attacks. With Salt used correctly even the MD5 can be used…
-
1
votes2
answers2051
viewsA: Develop integration tests correctly
Don’t worry about redundancy. Integration tests are to test how the various components of your system work together. Especially cases of failure. In reality the tests are the perfect place to see…
-
2
votes1
answer292
viewsA: Angular.js $setValidity onload Page
Instead of setting the field value using the value input, load the value in ng-model. Instead of doing this: <input type="text" ng-minlenth="10" ng-model="teste" value="${ vdo.teste }"/> Do…
-
4
votes2
answers415
viewsA: Fluent API with ASP.NET Identity
You can use your own custom classes with Identity. Just implement the interfaces: Iuser Irole Iuserstore Iuserloginstore Iuserrolestore Iuserclaimstore Iuserpasswordstore Iusersecuritystampstore…