Server side WebAuthn handling, with support for FaceID and FIDO metadata
Project description
Python WebAuthN
Server side handlers for WebAuthN with support for Apple's FaceID, and the FIDO metadata service.
Demo
A small Flask app showcasing this library is provided in the demo
folder.
Basic usage
Register a credential
Part 1: generate request to be sent to browser
# User the credential is to be registered to
user = webauthn.types.User(
id=b"test",
display_name="Test user",
name="test@example.com",
icon=None
)
# Who is requesting the credential
rp = webauthn.types.RelyingParty(
id="as207960-webauthn.eu.ngrok.io",
name="AS207960",
icon="https://as207960.net/assets/img/logo.svg"
)
data, challenge = webauthn.create_webauthn_credentials(
rp=rp, user=user, existing_keys=[],
attachment=None, require_resident=False,
user_verification=webauthn.types.UserVerification.Preferred,
attestation_request=webauthn.types.Attestation.DirectAttestation,
)
# Store the challenge and user for part 3
Part 2: Create credential through the browser
function b64decode(input) {
return Uint8Array.from(window.atob(input), c => c.charCodeAt(0));
}
function b64encode(input) {
return window.btoa(String.fromCharCode.apply(null, new Uint8Array(input)));
}
// Data having already been retrieved from the server
data.user.id = b64decode(data.user.id);
data.challenge = b64decode(data.challenge);
data.excludeCredentials = data.excludeCredentials.map(function (cred) {
cred.id = b64decode(cred.id);
return cred;
})
navigator.credentials.create({
publicKey: data
}).then(function (response) {
let data = {
id: b64encode(response.rawId),
response: {
data: b64encode(response.response.clientDataJSON),
attestation: b64encode(response.response.attestationObject),
}
}
// Send response data back to the server
});
Part 3: Complete registration on the server
# Response is the data from the browser as above
# This should be cached
fido_metadata = webauthn.metadata.get_metadata()
auth_data = webauthn.verify_create_webauthn_credentials(
rp=rp, challenge_b64=challenge,
client_data_b64=response["data"],
attestation_b64=response["attestation"],
fido_metadata=fido_metadata
)
The auth_data
response can be inspected to decide if the authenticator is to be allowed by the server. Such rules are
outside the scope of this package.
Perform a login
Part 1: generate request to be sent to browser
options, challenge = webauthn.get_webauthn_credentials(
rp=rp,
existing_keys=[pkey_id],
user_verification=webauthn.types.UserVerification.Preferred,
)
# Store the challenge and user for part 3
Part 2: Sign challenge
// Data having already been retrieved from the server
data.challenge = b64decode(data.challenge);
data.allowCredentials = data.allowCredentials.map(function (cred) {
cred.id = b64decode(cred.id);
return cred;
})
return navigator.credentials.get({
publicKey: data
}).then(function (response) {
let data = {
response: {
data: b64encode(response.response.clientDataJSON),
authenticator: b64encode(response.response.authenticatorData),
signature: b64encode(response.response.signature),
user: b64encode(response.response.userHandle),
}
}
// Send response data back to the server
});
Part 3: Verify response on the server
# Response is the data from the browser as above
# This should be cached
fido_metadata = webauthn.metadata.get_metadata()
auth_data = webauthn.verify_create_webauthn_credentials(
rp=rp, challenge_b64=challenge,
client_data_b64=response["data"],
attestation_b64=response["attestation"],
fido_metadata=fido_metadata
)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file py-webauthn-0.0.4.tar.gz
.
File metadata
- Download URL: py-webauthn-0.0.4.tar.gz
- Upload date:
- Size: 13.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fc0bf0d68d7b1b79484bf9e38e4868bf45ff0324e2a3da71bfadb5abbf75aa87 |
|
MD5 | bb6ddfa3a7fbcdaec95e856d8b3b6565 |
|
BLAKE2b-256 | 11c0d1b9b7363605c68e5d1b3e66194b2b830a55eb5915a8ec183b6b934239e2 |
File details
Details for the file py_webauthn-0.0.4-py3-none-any.whl
.
File metadata
- Download URL: py_webauthn-0.0.4-py3-none-any.whl
- Upload date:
- Size: 15.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 72bc69aac3a9a81a761cbcfb3f3421cce7a961d142e07f1aa005d4e51359c595 |
|
MD5 | 392fc75405441348056eea685df5ec71 |
|
BLAKE2b-256 | 5d0faccded49276da0f18083ba99d8d079be8977f1ede9c79de37644e8857d83 |