L
Locku_88
Guest
Hi, how can I decode an ASN.1 cipher?
If someone knows how to do this in C ++. You can drop the code in this language too.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Security.Cryptography; //не забудьте подключить данную библиотеку
namespace Clipher_Ans_1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Введите текст который нужно зашифровать");
string str = (Console.ReadLine());
byte[] bytes = new byte[str.Length];
bytes = Encoding.Default.GetBytes(str);
AsnEncodedData asndata = new AsnEncodedData(bytes);
Console.WriteLine(asndata.Format(true)); //данные будут выводиться на экран в кодировке ASN.1.
Console.WriteLine("___________\n");
}
}
}
Continue reading...
If someone knows how to do this in C ++. You can drop the code in this language too.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Security.Cryptography; //не забудьте подключить данную библиотеку
namespace Clipher_Ans_1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Введите текст который нужно зашифровать");
string str = (Console.ReadLine());
byte[] bytes = new byte[str.Length];
bytes = Encoding.Default.GetBytes(str);
AsnEncodedData asndata = new AsnEncodedData(bytes);
Console.WriteLine(asndata.Format(true)); //данные будут выводиться на экран в кодировке ASN.1.
Console.WriteLine("___________\n");
}
}
}
Continue reading...