Skip to content

Instantly share code, notes, and snippets.

View kamihouse's full-sized avatar

Thiago Pereira kamihouse

View GitHub Profile
// 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',
<!--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 -->
<?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) {