AS3 "RSAKey" equivalent in C# [closed] - c#

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
First sorry for my bad English.
I have to use a similar class to RSAKey, from hurlan in C#, but I can't find anything similar, and I don't really understand what exactly this class does.
Do you know any equivalent to this (per example in BouncyCastle), or can you explain me what it exactly does?
Thanks!

Read more about RSA here. It's a public key encryption protocol. (read What is public key crytography ?)
In C#, you have to use :
With .Net 4.5 : System.Security.Cryptography.RSACryptoServiceProvider
With WinRT : AsymmetricKeyAlgorithmProvider
Hope this helps

Related

How can we differentiate c# and silverlight utility classes and ui? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
any one plz tell me how to differentiate the c# and silverlight interms of utility classes,ui controls(ui rendering) and package deployment?
i need to know all these details anyone plz help me out.
The Silverlight classes offered out-of-the-box are listed on MSDN - as are the various C# class libraries.
Assuming that your question comes from wanting to know which C# classes are not available in Silverlight (quite a few as I remember)

Need help finding name of function [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
My friend sent me an encoded string which I would assume is Java or C#, but since I code in neither of them I could need some help. The string is as follows:
0x579fb13
I thought about it being base 64 or so at first, but the 0x indicates it's hex or something.
Any help appreciated.
The 0x would indeed normally indicate that it's hex. That looks like a memory location to me, and as such may be (inadvertently) the pointer to the structure containing the encrypted string.

Can anyone give me an example of using C# reflection? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
Im just learning about reflection in C#. Anyone know of some good tutorials or want to give me some sample code to look at? Thanks!
You might like to look here to start with.. (Its the first result in Google Search)
http://csharp.net-tutorials.com/reflection/introduction/

Antivirus algorithm in DataStructure [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I want to make a Antivirus Software in Data Structure using C#. So help needed for the Algorithm.
You can find algorithms here: http://sourceforge.net/projects/clamav/
The code is writted for unix but as you are interested in algorithm only so it will work for you. It's a popular antivirus for UNIX called "Clam Antivirus".

what is the best technique of using OOP? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
Can u give a real sample scenario using OOP structure for developing programs.
Would appreciate your response.
Thank you,
OOP principle - program to interfaces
What does "program to interfaces, not implementations" mean?
For more of OOAD, read this book. It explains majority OOAD principles and techniques very well.
(source: headfirstlabs.com)

Categories