I've been following this sample about singing xml documents with c# using RSACryptoServiceProvider.
What I need is to use this sample with ECDsaCryptoServiceProvider, found here:
http://msdn.microsoft.com/en-us/library/system.security.cryptography.ecdsacryptoserviceprovider%28v=vs.102%29.aspx
As msdn say, it should be found under System.Security.Cryptography, the problem is that I cannot see that class under System.Security.Cryptography.
Does someone knows how can I use that class? Should I use a "special" version of .net framework? Thanks in advance.
Only ".NET Micro Framework 4.3"
This is for microcontroler-devices before the IOT-wave came out.
Related
Can any one point me to any live implementation of CBC-MAC Mode (CCM)or Galois/Counter Mode (GCM) in C#?
It seems that Microsoft has not created any implementation similar to AesCryptoServiceProvider. Am I right?
I did went through: https://blogs.msdn.microsoft.com/shawnfa/2009/03/17/authenticated-symmetric-encryption-in-net/, bit it's more of a "would look something like" rather than actual implementation.
Any help will be highly appreciated.
Thanks in advance.
By the way, while there wasn't an official MS implementation at the time of this question, there is one now:
AES-GCM: AesGcm Class (System.Security.Cryptography)
AES-CCM: AesCcm Class (System.Security.Cryptography)
Both are supported from:
.Net: 5.0
.Net Core: 3.0
.Net Standard 2.1
I need your help to know about javadoc in asp.net, does exist any javadoc equivalent for .net (asp.net mvc 4)?. I know about ///summary but I don't know if this comments can be exported to xml or html.
Take a look at this answer on how to enable XML documentation directly on VS:
How to generate documentation out of code comments
Have you looked into GhostDoc?
http://submain.com/products/ghostdoc.aspx
I am using OracleBulkCopy Class with reference to Oracle.DataAccess.dll. I want to use Oracle.ManagedDataAccess.dll for easy deployment. But then I got build error "OracleBulkCopy not found"
Does anyone know why OracleBulkCopy is not included in Oracle.ManagedDataAccess.dll?
You are correct. At the time of this writing OracleBulkCopy is not supported in ODP.NET, Managed Driver.
The reason is is not included was simply a matter of feature priority. As the Managed Driver becomes more feature complete, eventually the OracleBulkCopy class will be added.
In the future, anyone can look at the "Differences between the ODP.NET Managed Driver and Unmanaged Driver" section of the most recent ODP.NET book to see what is not supported:
https://docs.oracle.com/cd/E56485_01/win.121/e55744/intro004.htm#ODPNT8146
Please vote for it at the Oracle Feature Request page:
https://apex.oracle.com/pls/apex/f?p=18357:39:28710406382793::NO::P39_ID:27881
If we get enough votes, they may implement it.
Good news, this feature is part of Oracle.ManagedDataAccess.Client namespace. :)
I am trying to use HTMLUnit in .Net I followed the example in Steven Sanderson's blog http://blog.stevensanderson.com/2010/03/30/using-htmlunit-on-net-for-headless-browser-automation/ which works well. However I have encontered the problem mentioned in How to disable runtime warnings in java? where I want to turn down the noise from Log4J.
As stated I need to do the following:-
System.getProperties().put("org.apache.commons.logging.simplelog.defaultlog","fatal");
But I have no idea how to do this in .Net. Any help would be much appreciated.
Simon
The config system is .NET considerably different to that in Java (he said, not having written any Java for over 10 years!). Take a look here to get you started : http://msdn.microsoft.com/en-us/library/system.configuration.configurationsettings.aspx
You can also write custom config sections/handler for more complex bespoke config scenarios. http://msdn.microsoft.com/en-us/library/ie/2tw134k3.aspx
Folks,
Does anyone know of a dll or .net code that will generate test data from a REGEX?
I am aware of The Regular Expression Generator and the solutions offered in the stackoverflow question Using Regex to generate Strings rather than match them.
Unfortunately, I am writing in C#, and I need to generate the test data at run time.
I have also tried Rex, but it blows an error when I try to load it on a virtual machine.
Any help would be appreciated.
Regards,
Brett Nieland
There is a Microsoft reasearch tool called Rex that explores .NET regexes and generates members efficiently. http://research.microsoft.com/en-us/projects/rex/
As I have seen, you already tried Rex: Maybe the blog post from Chris Eargle helps you then.
You may also want to look at project Fare. See the answer at this question: convert nfa to dfa