Skip to content

Commit

Permalink
issue #153 fix conditional compilation for ConcatKDF
Browse files Browse the repository at this point in the history
  • Loading branch information
dvsekhvalnov committed Apr 12, 2021
1 parent f00912e commit 7793e42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jose-jwt/crypto/ConcatKDF.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public static byte[] DeriveKey(CngKey externalPubKey, CngKey privateKey, int key
}
}
}
#elif NETSTANDARD1_4
#else
throw new NotImplementedException("not yet");
#endif
}
Expand Down

0 comments on commit 7793e42

Please sign in to comment.