3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * var hash = System.Security.Cryptography.SHA256.Create(); * hash.ComputeHash(System.Text.Encoding.Unicode.GetBytes(secretKey + guid)); * aCookie.Values[""signatur""] = Convert.ToBase64String(hash.Hash); */ // Make sure we have the same encoding on both strings. //$guid = mb_convert_encoding('36a75830-be27-e111-a4dc-0050568b2fc3', 'UTF-8'); $secret = mb_convert_encoding('R3loadN3tcompanyIda36a75830-be27-e111-a4dc-0050568b2fc3', 'UTF-8'); // Generate raw/byte hash. $hash = hash('sha256', $secret, TRUE); // Get the base64 value. $signature = base64_encode($hash); print 'Signature: ' . $signature;
Output for git.master, git.master_jit, rfc.property-hooks
Signature: MN++gb6wsSdB6OCg51ZV1rbP0W+l7mK/1wtjmYAXEn8=

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
35.6 ms | 401 KiB | 8 Q