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
public static String textToBinary(String originalText) { | |
String binaryText = ""; | |
for (int i = 0; i < originalText.length(); i++) { | |
// Primero obtenemos la letra o carácter actual | |
char currentChar = originalText.charAt(i); | |
// Necesitamos obtener su representación entera ASCII | |
int ascii = (int) currentChar; | |
// Una vez que ya tenemos el entero, lo convertimos a binario | |
String binary = decimalToBinary(ascii); | |
// Lo agregamos a la cadena resultante agregando además un espacio |
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
public static int binaryToDecimal(String binary) { | |
// A este número le vamos a sumar cada valor binario | |
int decimal = 0; | |
int position = 0; | |
// Recorrer la cadena... | |
for (int x = binary.length() - 1; x >= 0; x--) { | |
// Saber si es 1 o 0; primero asumimos que es 1 y abajo comprobamos | |
short digit = 1; | |
if (binary.charAt(x) == '0') { | |
digit = 0; |
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
char caracter = '@'; | |
int representacion = (int) caracter; | |
System.out.println("El valor ASCII es: " + representacion); |
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 | |
use Illuminate\Database\Migrations\Migration; | |
use Illuminate\Database\Schema\Blueprint; | |
use Illuminate\Support\Facades\DB; | |
use Illuminate\Support\Facades\Schema; | |
class ChangeProductDescriptionDatatype extends Migration | |
{ | |
/** |
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 | |
/** | |
* Run the migrations. | |
* | |
* @return void | |
*/ | |
public function up() | |
{ | |
Schema::table('products', function (Blueprint $table) { | |
DB::statement("ALTER TABLE products MODIFY description LONGTEXT"); |
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
const urlSearchParams = new URLSearchParams(window.location.search); | |
const id = urlSearchParams.get("id"); | |
console.log("El id es:", id); |
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
// Recuperamos la contraseña de la petición | |
const palabraSecretaTextoPlano = "hunter2"; | |
// Y la guardada en la base de datos | |
const palabraSecretaEncriptada = "$2a$10$P9yvh9ew5ZueNRjQGX4Eiui9jNhaKJCX24mRsrWSNvj.0O2FjNSB2"; | |
// Comprobamos... | |
const palabraSecretaValida = await bcrypt.compare(palabraSecretaTextoPlano, palabraSecretaEncriptada); |
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
// Primero vamos a hashear la contraseña | |
const palabraSecretaTextoPlano = "hunter2"; | |
// Entre más rondas, mejor protección, pero más consumo de recursos. 10 está bien | |
const rondasDeSal = 10; | |
const palabraSecretaEncriptada = await bcrypt.hash(palabraSecretaTextoPlano, rondasDeSal); |
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
// Importamos paquete | |
const bcrypt = require("bcryptjs"); | |
// Este hash debe venir de tu base de datos, por ejemplo | |
// Nota: yo sé que este hash es "hunter2", obviamente es para ejemplificar | |
const palabraSecretaHasheada = "$2a$10$P9yvh9ew5ZueNRjQGX4Eiui9jNhaKJCX24mRsrWSNvj.0O2FjNSB2"; | |
const palabraSecretaProporcionadaPorUsuario = "hunter2"; | |
// Recuerda. Los argumentos son: texto plano, encriptada, y callback | |
bcrypt.compare(palabraSecretaProporcionadaPorUsuario, palabraSecretaHasheada, (err, coinciden) => { | |
if (err) { | |
console.log("Error comprobando:", err); |
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
// Importamos paquete | |
const bcrypt = require("bcryptjs"); | |
// Primero vamos a hashear la contraseña | |
const palabraSecretaTextoPlano = "hunter2"; | |
// Entre más rondas, mejor protección, pero más consumo de recursos. 10 está bien | |
const rondasDeSal = 10; | |
bcrypt.hash(palabraSecretaTextoPlano, rondasDeSal, (err, palabraSecretaEncriptada) => { | |
if (err) { | |
console.log("Error hasheando:", err); |