File: __init__.py

package info (click to toggle)
odoo 18.0.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 878,716 kB
  • sloc: javascript: 927,937; python: 685,670; xml: 388,524; sh: 1,033; sql: 415; makefile: 26
file content (45 lines) | stat: -rw-r--r-- 1,827 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from .aaguid_to_string import aaguid_to_string
from .base64url_to_bytes import base64url_to_bytes
from .bytes_to_base64url import bytes_to_base64url
from .byteslike_to_bytes import byteslike_to_bytes
from .decode_credential_public_key import decode_credential_public_key
from .decoded_public_key_to_cryptography import decoded_public_key_to_cryptography
from .encode_cbor import encode_cbor
from .generate_challenge import generate_challenge
from .generate_user_handle import generate_user_handle
from .hash_by_alg import hash_by_alg
from .options_to_json import options_to_json
from .parse_attestation_object import parse_attestation_object
from .parse_authentication_credential_json import parse_authentication_credential_json
from .parse_authenticator_data import parse_authenticator_data
from .parse_backup_flags import parse_backup_flags
from .parse_cbor import parse_cbor
from .parse_client_data_json import parse_client_data_json
from .parse_registration_credential_json import parse_registration_credential_json
from .validate_certificate_chain import validate_certificate_chain
from .verify_safetynet_timestamp import verify_safetynet_timestamp
from .verify_signature import verify_signature

__all__ = [
    "aaguid_to_string",
    "base64url_to_bytes",
    "bytes_to_base64url",
    "byteslike_to_bytes",
    "decode_credential_public_key",
    "decoded_public_key_to_cryptography",
    "encode_cbor",
    "generate_challenge",
    "generate_user_handle",
    "hash_by_alg",
    "options_to_json",
    "parse_attestation_object",
    "parse_authenticator_data",
    "parse_authentication_credential_json",
    "parse_backup_flags",
    "parse_cbor",
    "parse_client_data_json",
    "parse_registration_credential_json",
    "validate_certificate_chain",
    "verify_safetynet_timestamp",
    "verify_signature",
]