Skip to content

Commit

Permalink
Fix build break.
Browse files Browse the repository at this point in the history
  • Loading branch information
vcsjones committed Mar 28, 2020
1 parent 20c61ae commit 99dbb01
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,11 @@ private void ImportKeyBlob(byte[] ecfullKeyBlob, string curveName, bool includeP
Key = ECCng.ImportKeyBlob(ecfullKeyBlob, curveName, includePrivateParameters);
}

private void ImportLimitedPrivateKeyBlob(in ECParameters ecParams)
{
throw new PlatformNotSupportedException();
}

private byte[] ExportKeyBlob(bool includePrivateParameters)
{
return ECCng.ExportKeyBlob(Key, includePrivateParameters);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@ private void ImportKeyBlob(byte[] ecfullKeyBlob, string curveName, bool includeP
Key = ECCng.ImportKeyBlob(ecfullKeyBlob, curveName, includePrivateParameters);
}

private void ImportLimitedPrivateKeyBlob(in ECParameters ecParams)
{
throw new PlatformNotSupportedException();
}

private byte[] ExportKeyBlob(bool includePrivateParameters)
{
return ECCng.ExportKeyBlob(Key, includePrivateParameters);
Expand Down

0 comments on commit 99dbb01

Please sign in to comment.