create_small_bootstrap_key

Engine.create_small_bootstrap_key(secret_key)
Creates a small bootstrap key for bootstrapping. Requires a secret key. The small bootstrap key is needed when bootstrapping with the rotation key.
  • Input
    • SecretKey
  • Output
    • SmallBootstrapKey
from desilofhe import Engine

engine = Engine(for_bootstrap=True)
secret_key = engine.create_secret_key()
small_bootstrap_key = engine.create_small_bootstrap_key(secret_key)