aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel V. Shatov (Meister) <meisterpaul1@yandex.ru>2019-10-23 17:02:43 +0300
committerPavel V. Shatov (Meister) <meisterpaul1@yandex.ru>2019-10-23 17:02:43 +0300
commitd50bb6039649a61b2048447a63a9670895e1e2be (patch)
treef9a935fa90c0e39b6a6a7f4fa9b2b202e9cc57c6
parent88f46be9bf792d5217dffcd91b0038576a1e3caa (diff)
Added readme file.
-rw-r--r--README.md162
1 files changed, 162 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..1b08005
--- /dev/null
+++ b/README.md
@@ -0,0 +1,162 @@
+# ModExpNG
+
+## Core Description
+
+This "next-generation" IP core implements the modular exponentiation math primitive using the specialized DSP slices present in the Artix-7 FPGA found on the CrypTech Alpha board. It can be used during RSA operations such as encryption/decryption and signing. Given a pair of blinding factors, the core internally blinds the message before signing and then unblinds it afterwards. The blinding factors are automatically mutated during each exponentiation for later reuse. Another prominent feature is the full support for Chinese Remainder Theorem. Given smaller moduli P and Q, the core can do the mixed-radix conversion variant of the algorithm ("Garner's formula") for faster computation. Due to limitations of the underlying hardware (primarily the capacity of the BlockRAM tile in the 7-Series Xilinx devices) the largest supported key length is 4096 bits.
+
+## Compile-Time Settings
+
+The core has one synthesis-time parameter:
+
+ * **NUM_MULTS** - Sets the number of DSP slices to use per modular multiplier, which must be a power of 2. Each multiplier consumes NUM_MULTS + 1 slices, since one additional multiplier is required to eliminate the final conditional subtraction step of the Montgomery modular multiplication routine. The core internally consists of a pair of <i>dual modular multipliers</i>, thus the total number of occupied DSP slices is 4 * (NUM_MULTS + 1). When in CRT mode, both <i>dual multipliers</i> operate simultaneously, each with its own modulus. The two multipliers inside of the <i>dual multiplier</i> simultaneously do the squaring and multiplication operations, which constitute one step of the Montgomery powering ladder. Combined DSP slice utilization is outlined in the following table:
+
+| NUM_MULTS | DSP Usage |
+|-----------|-----------|
+| 8 | 36 |
+| 16 | 68 |
+| 32 | 132 |
+| 64 | 260 |
+
+Currently the core has been tested in hardware with a balanced setting of NUM_MULTS = 8. Larger values should decreate latency, but proportionally increase DSP slice usage. The core takes advantage of the dedicated high-speed cascade paths between DSP slices, thus all the NUM_MULTS slices must be placed in the same DSP column. Given that the column height for the Artix-7 FPGA is 100 DSP slices, the upper limit on NUM_MULTS is 64. This has not been yet tested in hardware and may require floorplanning or additional operand "broadcast" tree, which is a topic for future research.
+
+## API Specification
+
+The interface of the core is similar to other CrypTech cores. FMC memory map is split into four regions, each region is 32 kilobits (4 kilobytes). The first one contains core registers and looks like the following:
+
+| Offset | Register |
+|--------|---------------|
+| 0x0000 | NAME0 |
+| 0x0004 | NAME1 |
+| 0x0008 | VERSION |
+| 0x0020 | CONTROL |
+| 0x0024 | STATUS |
+| 0x0040 | MODE |
+| 0x0044 | MODULUS_BITS |
+| 0x0048 | EXPONENT_BITS |
+| 0x004C | BANK_BITS |
+| 0x0050 | NUM_MULTS |
+
+The core has the following registers:
+
+ * **NAME0**, **NAME1**
+Read-only core name ("``mode``", "``xpng``").
+
+ * **VERSION**
+Read-only core version, currently "``0.10``".
+
+ * **CONTROL**
+Register bits:</br>
+``[31:2]`` Don't care, always read as 0</br>
+``[1]`` "**next**" control bit</br>
+``[0]`` Don't care, always read as 0</p>
+The "**next**" control bit is used to start an exponentiation. The core is edge-triggered, this way if the bit is currently set, it must be cleared first and then set to 1 again to start a new exponentiation.
+
+ * **STATUS**
+Read-only register bits:</br>
+``[31:2]`` Don't care, always read as 0</br>
+``[1]`` "**valid**" status bit</br>
+``[0]`` "**ready**" status bit, always read as 1</p>
+The "**valid**" status bit is cleared as soon as the core starts exponentiation, and gets set after the operation is finished.
+
+ * **MODE**
+Mode register bits:</br>
+``[31:2]`` Don't care, always read as 0</br>
+``[1]`` "**CRT enable**" control bit</br>
+``[0]`` Don't care, always read as 0</p>
+The "**CRT enable**" control bit allows the core to take advantage of the Chinese remainder theorem to speed up RSA operations.
+
+* **MODULUS_BITS**
+Length of modulus in bits. Smallest allowed value is 64 * **NUM_MULTS** (currently 64 * 8 = 512), largest allowed value is 4096. The core rounds **MODULUS_BITS** down to the nearest multiple of 32 * **NUM_MULTS** (currently 32 * 8 = 256). Thus, allowed key lengths are 512, 768, 1024, 1280, ..., 4096. If the modulus is eg. 1000 bits wide, **MODULUS_BITS** must be set to 1024 and the modulus must be prepended with 24 zero bits to match the allowed length. Always set this to the length of the public key, do not use twice smaller value when CRT is enabled, the core automatically takes care of that.
+
+* **EXPONENT_BITS**
+Length of exponent in bits. Smallest allowed value is 4, largest allowed value is 4096.
+
+* **BANK_BITS**
+Length of operand bank in bits. This read-only parameter returns the length of internal operand bank and allows the largest supported operand width to be determined at run-time. Currently **BANK_BITS** is hardwired to always return 4096.
+
+* **NUM_MULTS**
+This read-only parameter returns the width of the internal parallel multiplier, that was specified at compile-time. This parameter is currently 8.
+
+The two following memory regions (2nd and 3rd) contain input quantities, each region is split into eight banks, each bank is 4096 bits (512 bytes). The least significat byte of an input quantity should be written to offset 0 in a bank, i.e. one should start filling banks by writing the least significant word at the lowest offset.
+
+The second region contains the following banks:
+
+| Offset | Bank |
+|--------|----------|
+| 0x1000 | M |
+| 0x1200 | N |
+| 0x1400 | N_FACTOR |
+| 0x1600 | N_COEFF |
+| 0x1A00 | X |
+| 0x1C00 | Y |
+
+ * **M** is the message to be signed (base).</br>
+ * **N** is the modulus (public key).</br>
+ * **N_FACTOR** is the **N** Montgomery factor and must be precomputed (described later).</br>
+ * **N_COEFF** is the **N** modulus-dependent speed-up coefficient and must be precomputed (described later). Note, that the bank for **N_COEFF** is twice larger than normal banks.</br>
+ * (**X**, **Y**) are a pair of blinding factors. Blinding is always enabled, there's no way to disable it, thus a pair of blinding factors is required for exponentiation. Note, that a pair of (**X**, **Y**) = (1, 1) works just fine, but you effectively aren't doing any blinding this way. The message is blinded using **Y** and unblinded using **X**, thus the relationship between the two must be <b>Y = (X ** -1) ** e</b>. Note, that this scheme won't work for encryption, either a pair of (1, 1) must be used, or **X** and **Y** must be swapped. The overhead form blinding is four additional modular multiplications (two to blind-unblind the message and two to mutate the blinding factors) which is <1% for 1024-bit keys and even lower for longer keys.
+
+The third region contains the following banks. Note, that since the third region contains secret components, it is "write-only", any reads from the region will return 0xDEADCODE.
+
+| Offset | Bank |
+|--------|----------|
+| 0x2000 | D |
+| 0x2200 | P |
+| 0x2300 | DP |
+| 0x2400 | P_FACTOR |
+| 0x2600 | P_COEFF |
+| 0x2800 | Q |
+| 0x2900 | DQ |
+| 0x2A00 | Q_FACTOR |
+| 0x2C00 | Q_COEFF |
+| 0x2E00 | QINV |
+
+**D** is the exponent (secret exponent for signing, F4 is commonly used for encryption).</br>
+**P**, **Q** are the smaller moduli, they must be supplied when CRT mode is enabled. Note, that their banks are twice smaller than normal banks.</br>
+**DP**, **DQ** are private key components, they must be supplied when CRT mode is enabled. Note, that their banks are twice smaller than normal banks.</br>
+**P_FACTOR**, **Q_FACTOR** are the **P** and **Q** Montgomery factors and must be precomputed (described later).</br>
+**P_COEFF**, **Q_COEFF** are the **P** and **Q** moduli-dependent speed-up coefficients and must be precomputed (described later).</br>
+**QINV** is the private key compoment, it must be supplided when CRT mode is enabled.
+
+The fourth region contains three banks where the core will store the output quantities:
+
+| Offset | Bank |
+|--------|------|
+| 0x3000 | S |
+| 0x3200 | XM |
+| 0x3400 | YM |
+
+**S** is the signature (or ciphertext after encryption).</br>
+(**XM**, **YM**) are a pair of mutated blinding factors.</br>
+
+
+## Montgomery Factors and Modulus-dependent Speed-up Coefficients
+
+The core uses the Montgomery modular multiplier, which can only operate on numbers in the so called Montgomery domain. Bringing input numbers into Montgomery domain and converting output numbers out of Montgomery domain requires a special quantity called Montgomery factor: **FACTOR** = 2 ** (2 * (**MODULUS_BITS** + **WORD_WIDTH**)) mod **N**. This quantity has at most as many bits as the modulus and should be precomputed during key generation. The core's internal data buses are 16-bit wide, so for the formula above **WORD_WIDTH** = 16. The following pseudocode calculates the Montgomery factor given modulus **N**:
+```
+F = 1
+for i from 0 to 2 * (MODULUS_BITS + 16) - 1
+ F1 = F << 1
+ F2 = F1 - N
+ F = (F2 < 0) ? F1 : F2
+return F
+```
+
+The final step of Montgomery modular multiplication is Montgomery modular reduction. It is done by adding a multiple of the modulus to the intermediate product. The multiple is selected in such a way, that the lower half of the sum is all zero bits, so it can be safely reduced by just a trivial right shift. This speeds things up, since there's no more need to do computationally difficult division anymore. To determine the multiple of the modulus, another quantity is required, which is the so called modulus-dependent speed-up coefficient: **COEFF** = -**N** ** -1 mod 2 ** (**MODULUS_BITS** + **WORD_WIDTH**). The number of bits needed to store the coefficient exceeds the width of the modulus by one word. The core internally operates on 16-bit words, so the coefficient is wider than the modulus by two bytes. This non-obvious and somewhat inconvenient feature is required to skip the final conditional subtraction step of the "classic" Montgomery modular reduction. Since a selected multiple of the modulus is _added_ to the intermediate product, the result after shifting it to the right can exceed the modulus, so the traditional solution is to do a conditional subtraction as the very last step. The more precise analysis indicates, that the conditional subtraction can be eliminated, if the main loop of the reduction is repeated for at least three additional times, i.e. **MODULUS_BITS** + 3 total iterations. The model operates on entire words internally, so it can only do **MODULUS_BITS** + **WORD_WIDTH** iterations and thus needs 16 extra bits of the speed-up factor. The following pseudocode calculates the modulus-dependent speed-up coefficient:
+```
+R = 1
+B = 1
+NN = ~N + 1
+for i from 1 to (MODULUS_BITS + 16 - 1)
+ B = B << 1
+ T = R * NN mod 2 ** (MODULUS_BITS + 16)
+ if T[i] then
+ R = R + B
+return R
+```
+
+The `stm32/modexpng_util.c` file also has reference C code, that computes the Montgomery factor and the speed-up coeficient. Note that each keypair ideally requires three pairs of precomputed numbers: one for the public key **N** and one for each of the smaller secret moduli **P** and **Q**.
+
+
+## References ##
+1. [Hardware Aspects of Montgomery Modular Multiplication](https://eprint.iacr.org/2017/1115.pdf)