Primitive types such as int
or
double
store numbers in exactly 4 or 8 bytes, with finite
precision. This suffices for most applications, but cryptography
requires arithmetic on very large numbers, without loss of precision.
Therefore OpenSSL uses a bignum data type which holds
arbitrary sized integers and implements all basic arithmetic and
comparison operators such as +
, -
,
*
, ^
, %%
, %/%
,
==
, !=
, <
, <=
,
>
and >=
.
One special case, the modular
exponent a^b %% m
can be calculated using
bignum_mod_exp
, even when b
is too large for
calculating a^b
.
# create a bignum
y <- bignum("123456789123456789")
z <- bignum("D41D8CD98F00B204E9800998ECF8427E", hex = TRUE)
# size grows
print(y * z)
## [b] 34808613111804879213872650915812112647840354642904626774
# Basic arithmetic
div <- z %/% y
mod <- z %% y
z2 <- div * y + mod
stopifnot(z2 == z)
stopifnot(div < z)
RSA involves a public key and a private key. The public key should be known by everyone and is used for encrypting messages. Messages encrypted with the public key can only be decrypted in a reasonable amount of time using the private key. In RSA, this asymmetry is based on the practical difficulty of factoring the product of two large prime numbers.
An RSA key-pair is generated as follows (adapted from wikipedia):
OpenSSL has a key generator that does these things for us.
## [512-bit rsa private key]
## md5: abaa8fa36b6f2b2757573a53cebc291f
## sha256: 59565263c49a314b21f4efcb05f95a9e338c467e520469181674c68eb0fbc536
## [512-bit rsa public key]
## md5: abaa8fa36b6f2b2757573a53cebc291f
## sha256: 59565263c49a314b21f4efcb05f95a9e338c467e520469181674c68eb0fbc536
Usually we would use rsa_encrypt
and
rsa_decrypt
to perform the encryption:
msg <- charToRaw("hello world")
ciphertext <- rsa_encrypt(msg, pubkey)
rawToChar(rsa_decrypt(ciphertext, key))
## [1] "hello world"
Let’s look at how this works under the hood.
The data
field of the private key extracts the
underlying bignum integers:
## $e
## [b] 65537
## $n
## [b] 10679780305284728268094170501312324822376255124080981988416804693404835449308436795696691039966175887349555892373184155522831674608738066381402839700451799
## $p
## [b] 108707784702733228446882768303130999687430410689306499697562175024471912933447
## $q
## [b] 98243012995703220049767429090308831099312315008091298810521885706406458245617
## $d
## [b] 9196047456975872951540202171751180468686952853535224004308056860372334316117033532315179983852017558188059134868434179150218678135326584407588997386720769
## $dp
## [b] 33398404641493103968414552692121132775476621133545727930946097534488029157803
## $dq
## [b] 55794512164122157716287649888479709072987844493967654023339862764429991850433
## $qi
## [b] 108271573671559632691075731630733909460103808961099150704315979675939609531246
You can verify that the equations above hold for this key. The public key is simply a subset of the key which only contains n and e:
## $e
## [b] 65537
## $n
## [b] 10679780305284728268094170501312324822376255124080981988416804693404835449308436795696691039966175887349555892373184155522831674608738066381402839700451799
In order to encrypt a message into ciphertext we have to treat the
message data as an integer. The message cannot be larger than the key
size. For example convert the text hello world
into an
integer:
## [b] 126207244316550804821666916
To encrypt this message m into ciphertext c we calculate c = me (mod n). Using the public key from above:
## [b] 8090414570806622455176412674607142517485825183387057506813586218143620841319386777731566289203323282210274418629314008303694667012090411055787599587489234
This number represents our encrypted message! It is usually exchanged using base64 notation for human readability:
## [1] "mnkfZzzTKXKSNzwGvlsispkiiK3jaPsyp9mqe7o2SzY7ZeU7HlYXheeQ4C539H6aHKtkXeeuHq9HK5W4PhS10g=="
The ciphertext can be decrypted using d from the corresponding private key
via m = cd (mod n).
Note that c^d
is too large to calculate directly so we need
to use bignum_mod_exp
instead.
## [1] "hello world"
The only difference with the actual rsa_encrypt
and
rsa_decrypt
functions is that these add some additional
padding to the data.