Skip to main content

Ontology DDXF Cryptography Components

Project description

Ontology DDXF Cryptography Components

English | 中文

1. Ontology Distributed Identity Framework (ONT ID)

Ontology DID (also called ONT ID) is a decentralized identity identification protocol based on W3C DID specifications. ONT ID establishes a cryptographically-based digital identity for each entity, allowing self-sovereign of data authorization and ownership confirmation, which makes the identity and data truly assets that the user can control.

If you are interested in ONT ID, you can find a detailed introduction here.

2. Encryption Service Based on ONT ID

2.1. Encryption Process

There are three main steps to encrypting data:

  • Query public key: Access the smart contract in the ontology blockchain and get the corresponding public key pk based on the data requester's ONT ID.
  • Random sampling: Randomly sample 256-bit data to obtain the Advanced Encryption Standard (AES) key key.
  • Encryption: The AES256 key is encrypted using the Public Key Encryption Algorithm (PKE) to get ekey, and the plaintext data m is encrypted using AES256-GCM to get the ciphertext data c.

2.2. Decryption Process

  • Query private key: Find the corresponding private key sk from the private key management module according to ONT ID and PKIndex.
  • Decrypt symmetric key: Use the private key sk to decrypt the encrypted key ekey to get the AES symmetric key key.
  • Decrypt data: Use the AES symmetric key key to decrypt the ciphertext data c to get the plaintext data m.

3. Password-Based Key Derivation Function (PBKDF)

In cryptography, PBKDF (Password-Based Key Derivation Function) is key derivation functions with a sliding computational cost, aimed to reduce the vulnerability of encrypted keys to brute force attacks.

In Distributed Data eXchange Framework(short for DDXF), the hash function used by the key derivation algorithm is SHA256, and algorithm is as follows:

  • Input: seed, derived key length dkLen (in bits).
  • Output: Derived key key of length dklen.
def pbkdf2(seed: str or bytes, dk_len: int) -> bytes:
    key = b''
    index = 1
    bytes_seed = str_to_bytes(seed)
    while len(key) < dk_len:
        key += sha256(b''.join([bytes_seed, int_to_little_bytes(index)]))
        index += 1
    return key[:dk_len]

4. Elliptic Curve Integrated Encryption Scheme (ECIES)

Elliptic Curve Integrated Encryption Scheme(also ECIES), is a hybrid encryption system proposed by Victor Shoup in 2001. Shoup's submission can be found at here.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

ontology_ddxf_crypto-0.0.2-py3-none-any.whl (9.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page