Skip to content
lpp-crypto edited this page Jul 9, 2019 · 1 revision

Known Problems

If sage complains about arguments’ type not matching with Boost.Python… then you should:

  • replace the SBox instance by a list, which is as simple as replacing s with list(s), and
  • add int to the definition of integers used to build your list, i.e. replace s with [int(x) for x in s]. This last fix is a particular of the first one, i.e. it should always work.
Clone this wiki locally