]>
git.zerfleddert.de Git - proxmark3-svn/blob - client/fido/cose.h
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2018 Merlok
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
7 //-----------------------------------------------------------------------------
8 // Tools for work with COSE (CBOR Object Signing and Encryption) rfc8152
9 // https://tools.ietf.org/html/rfc8152
10 //-----------------------------------------------------------------------------
20 extern const char *GetCOSEAlgName(int id
);
21 extern const char *GetCOSEAlgDescription(int id
);
22 extern const char *GetCOSEktyDescription(int id
);
23 extern const char *GetCOSECurveDescription(int id
);
25 extern int COSEGetECDSAKey(uint8_t *data
, size_t datalen
, bool verbose
, uint8_t *public_key
);
27 #endif /* __COSE_H__ */