You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are having to init a cipher everytime we encrypt password now - a functionality provided through JCEEncryptor.java. The current implementation is incompatible with new JCE semantics though, so we have to explicitly init the cipher before it gets used since doFinal seems to unload the cipher. As a result, you cannot encrypt a password again once doFinal has been called on it.
Anyone know what I am talking about? Shouldn't this be fixed in EclipseLink code already?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
We are having to init a cipher everytime we encrypt password now - a functionality provided through JCEEncryptor.java. The current implementation is incompatible with new JCE semantics though, so we have to explicitly init the cipher before it gets used since doFinal seems to unload the cipher. As a result, you cannot encrypt a password again once doFinal has been called on it.
Anyone know what I am talking about? Shouldn't this be fixed in EclipseLink code already?
Beta Was this translation helpful? Give feedback.
All reactions