×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
It is possible to sign a string, using a PFX certificate (which contains
all the authenticating chain) in C-ILE or C++/ILE ?
A simple example of what I want, in C#
public byte[] SignString(string mensagem)
{
X509Certificate2 certificado = GetPFXCertificate();
CmsSigner signer = new
CmsSigner(SubjectIdentifierType.IssuerAndSerialNumber, certificado);
signer.DigestAlgorithm = new Oid("2.16.840.1.101.3.4.2.1");
//SHA256
ContentInfo content = new ContentInfo(new
Oid(Configuration.ContentOid), new
System.Text.UTF8Encoding().GetBytes(mensagem));
SignedCms signedCms = new SignedCms(content, false);
signedCms.ComputeSignature(signer, false);
var assinatura = signedCms.Encode();
return assinatura;
}
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact
[javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.