Kaba class Crypto ed

...

Syntax ed

class Crypto
    var k: BigInt
    var n: BigInt

    # constructors
    func mut __init__()

    # functions
    func pure decrypt(s: bytes, cut: bool) -> bytes
    func pure encrypt(s: bytes) -> bytes
    func mut from_str(s: string)

Functions ed

func pure decrypt(s: bytes, cut: bool) -> bytes
...

func pure encrypt(s: bytes) -> bytes
...

func mut from_str(s: string)
...

Elements ed

var k: BigInt
...

var n: BigInt
...