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
What should one do in order to use this library to encrypt and store the value in database column securely.
What I am thinking about is the extra information that has to be kept in order to decrypt: $IV and $T (say $A is always the same) as they have to be stored somewhere for each individual row/field.
I can concat them like $C:$IV:$T and store them like that but would this defeat their point as whey will be available as part of the ecrypted value stored?
If so how should this be done in the context of db storage?