Personal Data

Username:
sbeaudoin
Joined:
2023-06-06 15:34:51

Projects

  • No projects to display.

User Activity

  • Posted a comment on discussion Engineering 🇬🇧 on CODESYS Forge

    Sorry, I accidentally posted this in Runtime but I think this forum may be more appropriate. I am having trouble verifying a RSA PKCS1.5 SHA256 signature given a message, the signature as a hex string, and a public key as a .pem file. Here is an example of how I am trying to verify a signature using the CmpCrypto library in CODESYS V3.5 SP15: FUNCTION AsymmetricVerifyMessage : BOOL VAR_INTPUT sMessage : REFERENCE TO STRING; szMessage : ULINT; abySignature : REFERENCE TO ARRAY[0..255] OF BYTE; szSignature...

  • Posted a comment on discussion Runtime 🇬🇧 on CODESYS Forge

    I am having trouble verifying a RSA PKCS1.5 SHA256 signature given a message, the signature as a hex string, and a public key as a .pem file. Here is an example of how I am trying to verify a signature using the CmpCrypto library in CODESYS V3.5.15: FUNCTION AsymmetricVerifyMessage : BOOL VAR_INTPUT sMessage : REFERENCE TO STRING; szMessage : ULINT; abySignature : REFERENCE TO ARRAY[0..255] OF BYTE; szSignature : ULINT; abyPublicKey : REFERENCE TO ARRAY[0..291] OF BYTE; szPublicKey : ULINT; END_VAR...

View All