Show TOC

STS Scenario with Symmetric Key for Message Protection (Signature, Encryption, and Authentication)Locate this document in the navigation structure

Use

With this scenario, the STS and the consumer negotiate a symmetric key. This is used for signing (message signature) and encrypting messages between the consumer and the provider. The consumer uses this signature to prove that it is in possession of the key that the STS signed.

The figure shows the steps that take place with this scenario:

  1. The service user of the consumer authenticates himself or herself with the Security Token Service (STS), for example, with a Kerberos token. The STS exchanges this for a security token (SAML token). The consumer can contribute material to the creation of the short-lived symmetric key.

  2. The STS generates a short-lived symmetric key, which it encrypts with the public key of the provider. The STS inserts this key, together with the security token, into the SAML assertion, and signs the SAML assertion with a signature key.

  3. The STS issues the SAML assertion as an SAML token and sends it, together with its key material for generating the short-lived symmetric key, to the consumer.

  4. The consumer generates the short-lived symmetric key from its material and the key material from the STS.

  5. The consumer transfers the SAML token, unchanged, into the message header. It encrypts the message texts and signs the message with the generated short-lived symmetric key. It then sends the user's message to the provider.

  6. The provider checks the STS signature in the SAML token and uses its private key to decrypt the short-lived symmetric key contained in the SAML token. The provider verifies the signature of the consumer (that is, the Holder-of-Key) with the decrypted short-lived symmetric key. In this way, the STS confirms that the Holder-of-Key is the subject (the user) in the assertion. The provider uses the short-lived symmetric key to decrypt the message text.

  7. The provider allows the user whose ID is contained in the SAML token to access the resources.