mdarifmustafa / vt-middleware

Automatically exported from code.google.com/p/vt-middleware
0 stars 0 forks source link

vt-crypt: Implement Clone for Algorithms #152

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
A common usage pattern arises from the need to handle crypto operations in a 
thread safe manner:

1. Create a crypto object (i.e. Algorithm), initialize it, and pass to a 
dependent component.
2. Dependent component clones crypto object into several copies to handle 
operations in thread-safe manner.

Algorithms presently do not support this usage pattern and should be modified 
to provide some means creating an exact copy such that both instances produce 
the same cryptographic output for equal inputs.

Original issue reported on code.google.com by marvin.addison@gmail.com on 16 Apr 2013 at 3:56

GoogleCodeExporter commented 8 years ago

Original comment by marvin.addison@gmail.com on 16 Apr 2013 at 6:17

GoogleCodeExporter commented 8 years ago
Committed feature, https://code.google.com/p/vt-middleware/source/detail?r=2697.

Original comment by marvin.addison@gmail.com on 16 Apr 2013 at 6:22

GoogleCodeExporter commented 8 years ago

Original comment by marvin.addison@gmail.com on 16 Apr 2013 at 6:33