php şaşırtmaca şifrelemek / şifresini

0 Cevap php

Is there a way to encode/decode a string using a secret key. I will use base64 to give you an example what im looking for.

<?php 

$secret = 'abc123'; 
$string = 'Hello World';
$en = base64_encode($string,$secret);//encoded output returns here

echo base64_decode($en,$secret);//output: "Hello World"

?>

yani temelde bir metin kodlamak için, bir anahtar / tuz kullanın ve sonra sadece o aynı gizli anahtarı kullanarak geri çözmek isteyen im. Aksi takdirde yanlış bir çıkış olmalı :)

0 Cevap