Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sample demonstrating authentication with a Key Vault certificate #18109

Merged
merged 3 commits into from
May 13, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions sdk/identity/azure-identity/samples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,17 @@ the same API for all compatible client libraries.

## Setup

To run these samples, first install the Azure Identity and Key Vault Secrets
client libraries:
To run these samples, first install the Azure Identity and Key Vault Certificates
and Secrets client libraries:

```commandline
pip install azure-identity azure-keyvault-secrets
pip install azure-identity azure-keyvault-certificates azure-keyvault-secrets
```

## Contents
| File | Description |
|-------------|-------------|
| control_interactive_prompts.py | demonstrates controlling when interactive credentials prompt for user interaction |
| custom_credentials.py | demonstrates custom credential implementation |
| key_vault_cert.py | demonstrates authenticating with a Key Vault certificate |
| user_authentication.py | demonstrates user authentication API for applications |
104 changes: 104 additions & 0 deletions sdk/identity/azure-identity/samples/key_vault_cert.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
# ------------------------------------
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# ------------------------------------
"""Demonstrates how to authenticate with a certificate stored in Azure Key Vault

To run this script, first set $VAULT_URL and ensure DefaultAzureCredential is able
to authenticate you. The script create a couple of self-signed certs in the given
Vault, retrieve their private keys, and construct an instance of CertificateCredential
chlowell marked this conversation as resolved.
Show resolved Hide resolved
with each.
"""
import base64
import os

from azure.identity import CertificateCredential, DefaultAzureCredential
from azure.keyvault.certificates import (
CertificateClient,
CertificateContentType,
CertificatePolicy,
WellKnownIssuerNames,
)
from azure.keyvault.secrets import SecretClient
from cryptography.hazmat.backends import default_backend

VAULT_URL = os.environ["VAULT_URL"]

credential = DefaultAzureCredential()

# a CertificateClient to create self-signed certs to work with
CERT_CLIENT = CertificateClient(VAULT_URL, credential)

# Key Vault stores certificate private keys as secrets, so we use a SecretClient to retrieve them
SECRET_CLIENT = SecretClient(VAULT_URL, credential)


def pkcs12_cert():
"""Demonstrates creating a CertificateCredential with a Key Vault certificate stored in PKCS12 (default) format"""

# Creating a self-signed cert to work with
create_cert_poller = CERT_CLIENT.begin_create_certificate(
"azure-identity-sample-default", CertificatePolicy.get_default()
)
cert = create_cert_poller.result()

# CertificateCredential requires the certificate and its private key in PEM format.
# The certificate as returned by begin_create_certificate() or get_certificate() contains
# only the public portion of the certificate. Key Vault will release the private key only
# if the certificate's policy indicates it's exportable (certs are exportable by default).
policy = CERT_CLIENT.get_certificate_policy(cert.name)
assert policy.exportable, "Expected an exportable certificate because that's Key Vault's default"

# The policy's content_type indicates whether the certificate is stored in PEM or PKCS12 format
assert policy.content_type == CertificateContentType.pkcs12, "Expected PKCS12 because that's Key Vault's default"

# Key Vault stores the complete certificate, with its private key, as a secret sharing the certificate's name

# Because this certificate is stored in PKCS12 format, the secret's value is base64 encoded bytes
encoded_cert = SECRET_CLIENT.get_secret(cert.name).value
pkcs12_bytes = base64.b64decode(encoded_cert)

# cryptography can convert PKCS12 to PEM
def pkcs12_to_pem(pkcs12_bytes):
"""Convert certificate bytes from PKCS12 format to PEM using the "cryptography" library"""
from cryptography.hazmat.primitives.serialization import Encoding, pkcs12, PrivateFormat, NoEncryption

private_key, cert, additional_certs = pkcs12.load_key_and_certificates(
pkcs12_bytes, password=None, backend=default_backend()
)

# using NoEncryption because the certificate in this sample is not password protected
private_bytes = private_key.private_bytes(Encoding.PEM, PrivateFormat.PKCS8, NoEncryption())
pem_sections = [private_bytes] + [c.public_bytes(Encoding.PEM) for c in [cert] + additional_certs]
return b"".join(pem_sections)

pem_bytes = pkcs12_to_pem(pkcs12_bytes)

# This credential will load the certificate but can't actually authenticate. Authentication requires real
# tenant and client IDs for a service principal configured to accept the certificate.
CertificateCredential("tenant-id", "client-id", certificate_data=pem_bytes)


def pem_cert():
"""Demonstrates creating a CertificateCredential with a Key Vault certificate stored in PEM format"""

# creating a self-signed certificate stored in PEM format (PKCS12 is Key Vault's default format)
pem_policy = CertificatePolicy(
WellKnownIssuerNames.self, subject="CN=localhost", content_type=CertificateContentType.pem
)
pem_cert = CERT_CLIENT.begin_create_certificate("azure-identity-sample-pem", pem_policy).result()

# The cert with its private key is available as a secret
pem_cert_secret = SECRET_CLIENT.get_secret(pem_cert.name)

# The secret's value is a string; CertificateCredential requires bytes
pem_bytes = pem_cert_secret.value.encode()

# This credential will load the certificate but can't actually authenticate. Authentication requires real
# tenant and client IDs for a service principal configured to accept the certificate.
CertificateCredential("tenant-id", "client-id", certificate_data=pem_bytes)


if __name__ == "__main__":
pkcs12_cert()
pem_cert()