As spacedog said, Authenticode can have a bad impact on startup time. So the question is what are you signing? It should be sufficient to Authenticode sign only your service executable which in turn must only reference strong named assemblies. Thus the overhead of verifying the Authenticode signature.
You could install your assemblies to the GAC - if possible - this will slightly boost startup performance because the strong name validation is skipped (see Authenticode and Assemblies) and / or you could also ngen your assemblies if startup time still is an issue.
From the answer to Windows service startup timeout by Romulo A. Ceccon:
It's good practice to finish starting
your service as fast as possible. So,
during the start state, do only what
you absolutely need to acknowledge it
started successfully; and do the rest
later. If the start is still a lengthy
process, use SetServiceStatus
periodically to inform the Service
Control Manager that you have not yet
finished, so it does not time-out your
service.
In addition to SetServiceStatus you could also try to tell the Service Control Manager (SCM) that the service needs additional time to start up by calling ServiceBase.RequestAdditionalTime.