Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-aws committed Nov 8, 2023
1 parent eb568d8 commit 74255e9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
7 changes: 3 additions & 4 deletions scripts/prep.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
#!/bin/bash

VERSION=https://github.com/dafny-lang/dafny/releases/download/v4.3.0/dafny-4.3.0-x64-ubuntu-20.04.zip
VERSION=https://github.com/dafny-lang/dafny/archive/refs/tags/v4.3.0.zip

wget $VERSION
unzip `basename $VERSION`

cd dafny
dotnet add package System.Security.Cryptography.Algorithms --version 4.3.1
cd ..
cd dafny-4.3.0
make exe
2 changes: 1 addition & 1 deletion src/interop/cs/DRandomCoin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* SPDX-License-Identifier: MIT
*******************************************************************************/

using System.Security.Cryptography.Algorithms;
using System.Security.Cryptography;
using System.Numerics;

namespace Coin_mInterface {
Expand Down
2 changes: 1 addition & 1 deletion src/interop/cs/DRandomUniformPowerOfTwo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*******************************************************************************/

using System;
using System.Security.Cryptography.Algorithms;
using System.Security.Cryptography;
using System.Numerics;

namespace UniformPowerOfTwo_mImplementation {
Expand Down

0 comments on commit 74255e9

Please sign in to comment.