Book Image

Mastering Identity and Access Management with Microsoft Azure - Second Edition

By : Jochen Nickel
Book Image

Mastering Identity and Access Management with Microsoft Azure - Second Edition

By: Jochen Nickel

Overview of this book

Microsoft Azure and its Identity and access management are at the heart of Microsoft's software as service products, including Office 365, Dynamics CRM, and Enterprise Mobility Management. It is crucial to master Microsoft Azure in order to be able to work with the Microsoft Cloud effectively. You’ll begin by identifying the benefits of Microsoft Azure in the field of identity and access management. Working through the functionality of identity and access management as a service, you will get a full overview of the Microsoft strategy. Understanding identity synchronization will help you to provide a well-managed identity. Project scenarios and examples will enable you to understand, troubleshoot, and develop on essential authentication protocols and publishing scenarios. Finally, you will acquire a thorough understanding of Microsoft Information protection technologies.
Table of Contents (23 chapters)
Title Page
Copyright and Credits
About Packt
Contributors
Preface
Index

Common token standards in a federated world


When a digital identity is transferred across a network, it's only a collection of bytes. It's common to refer to a set of bytes containing identity information as a security token or just a token. In a claims-based world, a token contains one or more claims, each of which carries some piece of information about the user it identifies.

Today, the tokens come in different flavors, including the following token formats:

  • Security Assertion Markup Language (SAML):
    • XML-based
    • Very descriptive metadata
  • JSON Web Token (JWT):
    • Easily readable by humans
    • Smaller token size
  • Simple Web Token (SWT):
    • Form-encoded attribute/value pairs
    • Not very common
  • Kerberos

For the following protocol specifications, we recommend a good basic knowledge of claims-based authentication. You can download the Microsoft claims-based authentication handbook to prepare yourself. Use the following download linkto get the book: https://www.microsoft.com/en-us/download/details.aspx?id=28362.

We will...