Hi All,
How Can I Create Digital Signature with a Digital Certificate in PowerBuilder?
Do you have examples, documentation?
thanks and regards,
Hi All,
How Can I Create Digital Signature with a Digital Certificate in PowerBuilder?
Do you have examples, documentation?
thanks and regards,
I have a certificate and I need to generate a digital signature for my PBDs (sources).
take .NET Framework 4.7 or .NET Core 2.0, build your C# class and import it intp PB via the new PB .NET Library Importer. The CertificateRequest class (https://docs.microsoft.com/en-us/dotnet/api/system.security.cryptography.x509certificates.certificaterequest?view=netcore-2.0) can build a PKCS#10 certification signing request or an X.509 (self-signed or chained) public key certificate.
If you think a C# wrapper class may take you too much time, you can go for other opensource API (BouncyCastle) or licensed Win32 ActiveX (https://www.chilkatsoft.com/refdoc/xChilkatXmlDSigGenRef.html).
Best,
.m