This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// choose either `'stable'` for receiving highly polished, | |
// or `'canary'` for less polished but more frequent updates | |
updateChannel: 'stable', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--iPhone and iPad Apple Touch Icons --> | |
<!-- iPhone Non-Retina --> | |
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="apple-touch-icon-57x57.png"> | |
<!-- iPhone Retina --> | |
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="apple-touch-icon-114x114.png"> | |
<!-- iPad Non-Retina --> | |
<link rel="apple-touch-icon-precomposed" href="apple-touch-icon-72x72.png" sizes="72x72"> | |
<!-- iPad Retina --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* en -> Simple class for encrypting passwords using Advanced Encryption Standard (AES) 256-bit | |
* pt -> Classe simples para criptografia de senhas usando Advanced Encryption Standard (AES) 256-bit | |
*/ | |
class Password { | |
private static $key= "NeB36lAm30&"; // Random key for encryption | |
public static function encript($password) { |