Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions getting-started/protocols-tutorial.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@
"metadata": {},
"outputs": [],
"source": [
"%maven org.cryptimeleon:math:2.+\n",
"%maven org.cryptimeleon:craco:2.+\n",
"%maven org.cryptimeleon:math:3.+\n",
"%maven org.cryptimeleon:craco:3.+\n",
"\n",
"import org.cryptimeleon.math.structures.groups.elliptic.nopairing.Secp256k1;\n",
"import org.cryptimeleon.math.structures.groups.elliptic.nopairing.*;\n",
"import org.cryptimeleon.math.structures.groups.lazy.*;\n",
"import org.cryptimeleon.math.hash.impl.SHA256HashFunction;\n",
"import org.cryptimeleon.math.structures.rings.zn.Zn;\n",
Expand All @@ -57,8 +57,8 @@
"import org.cryptimeleon.craco.protocols.arguments.fiatshamir.FiatShamirProofSystem;\n",
"\n",
"//Set up group and generate key\n",
"var group = new LazyGroup(new Secp256k1()); \n",
"var H1 = new HashIntoLazyGroup(new Secp256k1.HashIntoSecp256k1(), group);\n",
"var group = new Secp256k1(); \n",
"var H1 = new HashIntoSecp256k1();\n",
"var H2 = new SHA256HashFunction();\n",
"var jsonConverter = new JSONPrettyConverter(); //for serialization later\n",
"\n",
Expand Down