Quite simply, can one instance of javax.crypto.Cipher (e.g. Cipher.getInstance("RSA")) be used from multiple threads, or do I need to stick multiple of them in a ThreadLocal (in my case)?
|
|
||||
|
|
|
No, it isn't. The instance is stateful. So you need to store it threadlocal, or to obtain a new instance on every encrypt/decrypt call, or to wrap it in a Threadsafety is usually explicitly mentioned in javadocs. This is not the case for |
|||||||
|
|
I wouldn't use Cipher objects from multiple threads without synchronization. When you look at the API, there are methods which can only work by changing internal state, such as |
|||
|
|
|
Even if a Cipher were thread-safe, it were not really useful to use if from multiple threads concurrently. The bytes you put into and get out of the Cipher (via its If you are using multiple threads, you usually would want to call |
|||
|
|