protected SecretKey generateSessionKey() {
   SecretKey sessionKey =
       CipherUtils.generateKey(
           CipherUtils.DEFAULT_SYMMETRIC_ALGORITHM, CipherUtils.DEFAULT_SYMMETRIC_KEYSIZE);
   return sessionKey;
 }