First encryptorType field, in stock-quote-spring we have 4 types of encryptors:
springSecurityBytesEncryptor -> using Spring Security bytes encryptor method
noneEncryptor -> Not using encryption
aesGsmEncryptor -> Galois Counter mode encryptor
springSecurityTextEncryptor -> using Spring Security text encryptor method
saltBytes property, which is generated by KeyGenerators.string().generateKey(), it allows to work with multiple replicas of stock-quote which can decrypt and encrypt simulteanosly
Finally encryptionPassword property used for encryption and decryption.
First
encryptorType
field, in stock-quote-spring we have 4 types of encryptors:saltBytes
property, which is generated byKeyGenerators.string().generateKey()
, it allows to work with multiple replicas of stock-quote which can decrypt and encrypt simulteanoslyFinally
encryptionPassword
property used for encryption and decryption.