Re: [openssl-users] usage of SSL_read() and SSL_write() for file transfer

2018-02-02 Thread Salz, Rich via openssl-users
The TLS protocol puts limits on how much application data can appear in a single record. Without knowing all the details, that seems like a very silly requirement. There is no security reason for it. -- openssl-users mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl

Re: [openssl-users] usage of SSL_read() and SSL_write() for file transfer

2018-02-01 Thread Viktor Dukhovni
> On Feb 1, 2018, at 11:42 PM, Roushan Ara wrote: > > currently i am using openssl for client and server communication for file > transfer. i am facing some issue regarding the writing the content of file.my > requirement is i have to send the whole content of some specified file to > server

[openssl-users] usage of SSL_read() and SSL_write() for file transfer

2018-02-01 Thread Roushan Ara
Hi All, currently i am using openssl for client and server communication for file transfer. i am facing some issue regarding the writing the content of file.my requirement is i have to send the whole content of some specified file to server for that i am using SSL_write(). i can achieve this using