// SECMEC_USRSSBPWD security mechanism - Generate a source (client) seed
// to send to the target (application) server.
private void initializeClientSeed() throws SqlException {
if (encryptionManager_ == null) {
encryptionManager_ = new EncryptionManager(
agent_,
EncryptionManager.SHA_1_DIGEST_ALGORITHM);
}
sourceSeed_ = encryptionManager_.generateSeed();
}