class EL_RSA_KEY_PAIR
Rsa key pair
note
description: "Rsa key pair"
author: "Finnian Reilly"
copyright: "Copyright (c) 2001-2022 Finnian Reilly"
contact: "finnian at eiffel hyphen loop dot com"
license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
date: "2022-11-15 19:56:07 GMT (Tuesday 15th November 2022)"
revision: "7"
class
EL_RSA_KEY_PAIR
inherit
RSA_KEY_PAIR
redefine
make
end
create
make
feature {NONE} -- Initialization
make (bits: INTEGER)
--
local
seeder: EL_RANDOM_SEED_INTEGER_X
do
create seeder
Precursor (bits)
end
end