Search
 
SCRIPT & CODE EXAMPLE
 

CSHARP

encrypt/decrypt data php

//Key
$key = 'SuperSecretKey';

//To Encrypt:
$encrypted = mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $key, 'I want to encrypt this', MCRYPT_MODE_ECB);

//To Decrypt:
$decrypted = mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $key, $encrypted, MCRYPT_MODE_ECB);
Comment

PREVIOUS NEXT
Code Example
Csharp :: delegates in c# 
Csharp :: viewsheet location revit api 
Csharp :: c# custom comment tags 
Csharp :: gridview edit update delete in asp.net textbox size 
Csharp :: Set property of control on form by name 
Csharp :: unity custom editor draw line in scene 
Csharp :: c# same folder path 
Csharp :: how to do minus with button c# 
Csharp :: convert object to JToken 
Csharp :: dotnet core vue in subdirectory 
Csharp :: how to make a respaen script in unity 
Csharp :: unity follow object 
Csharp :: In ASP.NET Core how check if request is local 
Csharp :: C# bitwise complement 
Csharp :: c# list add and return 
Csharp :: If this is a Windows (R) Communication Foundation service to which you have access, please check that you have enabled metadata publishing at the specified address. 
Csharp :: asp.net unregister client script 
Csharp :: how to unit test dbcontext in .net core 
Csharp :: unity wheelcollider antiroll 
Csharp :: c# asp.net only displays name of property 
Csharp :: c# razor @html.actionlink( edit bootstrap 
Csharp :: fixed angle unity 
Csharp :: .net core get exe path 
Csharp :: conevrt list to pipe separated string c# 
Csharp :: copy properties from two subclasses c# 
Csharp :: c# how to divide a list every 4 count 
Csharp :: custom vs code snippet 
Csharp :: check list exist in list c# if matches any 
Csharp :: how to delete file in c# 
Csharp :: InverseTransformDirection 
ADD CONTENT
Topic
Content
Source link
Name
7+1 =