Built-in Expansion Functions

Table of contents

  1. Definition
  2. Reference
  3. Deep Dive

Definition

Elliptic Curve Cryptography (ECC) is a type of the trapdoor function. In theoretical computer science and cryptography, the trapdoor function is a function that is easy to compute in one direction, yet difficult to compute in the opposite direction (finding its inverse) without special information, called the “Trapdoor”. In Publick Key Infrastructure (PKI) using ECC, the “Trapdoor” shall be the ‘public key’. For example, In [Pic.1], the given ‘t’ shall be the public key. Thus, the main purpose of the usage of ECC is to create the public key by feeding a private key which is generated randomly (e.g., 32 bytes positive integer) into ECC function.

Reference

Please refer to the listed reference below. That help you understand what is Functions of Makefile

Deep Dive

  1. Elliptic Curve Cryptography
    • The elliptic curve of ECC is based on the mathmetical function in the finite field, which contains a finite number of elements. Thus, the result of the operations of multiplication, addition, subtraction and division meet the rules of arithmetic known as the field axioms. The most common examples of finite fields are given by the integers mod p, which is a prime/binary number.