8000 GitHub - LittleBigProgramming/no-framework-php: This project is aimed to create a personal framework that is robust and fit for reuse.
[go: up one dir, main page]

Skip to content

LittleBigProgramming/no-framework-php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

no-framework-php (Work in Progress)

This project is aimed to create a personal framework that is robust and fit for reuse. After alot of Development using frameworks I have noticed myself become somewhat reliant on them.

The following statement can be ran to create a table for the users.

CREATE TABLE `users` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(64) NOT NULL DEFAULT '',
  `email` varchar(255) NOT NULL DEFAULT '',
  `password` varchar(128) NOT NULL DEFAULT '',
  `remember_token` varchar(255) DEFAULT '',
  `remember_identifier` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

Two useful articles I used when looking into authentication and modern hashing.

https://blog.cloudflare.com/how-developers-got-password-security-so-wrong/

https://auth0.com/blog/hashing-in-action-understanding-bcrypt/

https://github.com/OWASP/CheatSheetSeries/blob/master/cheatsheets/Password_Storage_Cheat_Sheet.md

About

This project is aimed to create a personal framework that is robust and fit for reuse.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0