Stream Encription

2020-02-28 Thread Ilya Yurkevich
Hello, I have a client, that sends me data, that I need to encrypt, in few steps. I can use such functions in PKCS11: C_EncryptInit (...), C_EncryptUpdate (...), C_EncryptFinal (...). It allows me add data, that will be encrypted at every step, using C_EncryptUpdate  function.   In OpenSSL I f

Re: Stream Encription

2020-03-03 Thread Ilya Yurkevich
m cms structure. Thanks for any help.   >Пятница, 28 февраля 2020, 16:55 +03:00 от Dmitry Belyavsky < beld...@gmail.com >>: >  >Hello, >  >If you mean encryption/decryption only, I strongly suppose you should look at >EVP_CipherInit/Update/Final functions.   >On Fri, Feb 28,

Signing cms using hash of data instead data

2020-03-04 Thread Ilya Yurkevich
Hello everyone. Is it possible to create cms Signed Data using hash of the input data instead of the data? What I need use? Thanks.

Signing cms using hash of data instead data

2020-03-06 Thread Ilya Yurkevich
Hello everyone. Is it possible to create cms Signed Data using the message digest value instead of the data? What I need use? Thanks.

How create cms signed data using the message digest instead of a data

2020-03-13 Thread Ilya Yurkevich
Hello everyone. I have the digest of a data (message digest). How I can create cms signed data using the digest instead of a data? Thanks.