Right now the wh_Client_KeyWrap function takes in an input argument for the wrapped key size. This is problematic because it requires the client to know exactly how long the wrapped key is but this expected size could vary depending on server configuration.
The fix:
- Change the wrapped key size argument from an input to an input/output
- Update the key wrap request/response to account for the new input/output wrapped key size parameter
- Update any tests/demos to this API change