-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
I am currently running a base64 encoder method in http_response.C that I derived from an example online. I notice that it has memory leaks in valgrind (I thought BIO_free_all should have fixed this but it didn't). It currently uses openssl/bio.h but it may not have to. Since this system is intended to run continuously, it is essential that there are no memory leaks anywhere in the application. We need to create a base64 encoder and decoder method that doesn't have these issues.
If you google base64 encoder you will find some online systems that you can use to generate test cases for your unit tests.
If you are not familiar with base64 and what it is for, check out the Wikipedia article: https://en.wikipedia.org/wiki/Base64
Reactions are currently unavailable