-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update packages used by COSE * Push up the 1.2 build Ready to drop a 1.2 version * syntax error in travis * Change the sdk version * Remove unused line * Change build matrix * try a different 'nuget' for dotnet * Stop trying to do a dotnet build for now * Setup to release Add more framewords to drop Update bouncy castle Move tests from nunit to mstest in the hope we can get multiple framework testing of cose.dll as some point. * Ok - builds don't work because of problems with nuget * We are fialing builds on travis let's try it on appveyor * trigger build * Need to move to right directory * syntax err * Try an older mono version * Add examples pull * Fix indenting * Fixes for other directories around CBOR upgrade * Additional work * Add HssLms signature algorithm * Add Countersign1 code * Renaming of csproj files for JOSE
- Loading branch information
Showing
37 changed files
with
4,311 additions
and
2,555 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using PeterO.Cbor; | ||
|
||
namespace Com.AugustCellars.JOSE | ||
{ | ||
public class AlgorithmValues | ||
{ | ||
public static readonly CBORObject AES_GCM_128 = CBORObject.FromObject("A128GCM"); | ||
public static readonly CBORObject AES_GCM_192 = CBORObject.FromObject("A128GCM"); | ||
|
||
public static readonly CBORObject ECDSA_256 = CBORObject.FromObject("ES256"); | ||
|
||
public static readonly CBORObject ECDH_ES_HKDF_256_AES_KW_128 = CBORObject.FromObject("ECDH-ES+A128KW"); | ||
} | ||
} |
Oops, something went wrong.