-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Splits includes/signed_video_interfaces.h #136
Conversation
into a new public header file (signed_video_signing_plugin.h) with all new/renamed APIs to better reflect their usage. Further, moves the sign_algo_t and signature_info_t to signed_video_openssl.h since it is related to the cryptographic parts used by the wrappers in signed_video_openssl. All old APIs in signed_video_interfaces.h have been removed and the only remaining code is the redefinition of the plugin init/exit APIs. These need to be kept since they are not used by the library, but by the user.
* and output buffers. The thread is stopped if |out| is full, if there was a failure in | ||
* the memory allocation for a new signature or if sv_interface_exit() is called. | ||
* If the plugin is initialized, sv_signing_plugin_init(), one single central thread is spawned. | ||
* Each Signed Video session will then get an id to distiguish between tehm since they use common |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: tehm->them
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the first sentence in the commit message needs to be rephrased.
Also it could be worth mentioning in the commit message that it is deprecated interfaces that is removed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK.
into a new public header file (signed_video_signing_plugin.h) with
all new/renamed APIs to better reflect their usage.
Further, moves the sign_algo_t and signature_info_t to
signed_video_openssl.h since it is related to the cryptographic
parts used by the wrappers in signed_video_openssl.
All old APIs in signed_video_interfaces.h have been removed and
the only remaining code is the redefinition of the plugin init/exit
APIs. These need to be kept since they are not used by the library,
but by the user.