0

مجموعه برنامه ها به زبان سی شارپ

 
siryahya
siryahya
کاربر طلایی1
تاریخ عضویت : اسفند 1389 
تعداد پست ها : 158652
محل سکونت : ▂▃▄▅▆▇█Tabriz█▇▆▅▄▃▂

پاسخ به:مجموعه برنامه ها به زبان سی شارپ
جمعه 25 اردیبهشت 1394  11:16 AM

[C#] XOR Encryption
 
این هم یک سورس خوب برای استفاده در کریبتر یک متد crypt کردن stringهست...
کد PHP:
[CENTER] 
using System; 
using System.Collections.Generic; 
using System.ComponentModel; 
using System.Data; 
using System.Drawing; 
using System.Text; 
using System.Windows.Forms; 
 
namespace XOREncryption 
    public partial class Form1 : Form 
    { 
        public Form1() 
        { 
            InitializeComponent(); 
        } 
 
        private string XorEncrypt(string text, int key) 
        { 
            string newText = ""; 
 
            for (int i = 0; i < text.Length; i++) 
            { 
                int charValue = Convert.ToInt32(text[i]); //get the ASCII value of the character 
                charValue ^= key; //xor the value 
 
                newText += char.ConvertFromUtf32(charValue); //convert back to string 
            } 
 
            return newText; 
        } 
 
               
    } 
[/CENTER]  

 

ترکی زبان قربون صدقه رفتنه داریم که: گوزلرین گیله‌سین قاداسین آلیم که یعنی درد و بلای مردمک چشات به جونم …!.

تشکرات از این پست
دسترسی سریع به انجمن ها