/usr/include/cjose/cjose.h is in libcjose-dev 0.6.0+dfsg1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | /**
* \file
* \brief
* Main include file for CJOSE.
*
* Including this file includes all the public symbols for CJOSE.
*
* \mainpage
*
* CJOSE is an implementation of JavaScript Object Signing and Encryption
* (JOSE).
*
* Copyrights
*
* Portions created or assigned to Cisco Systems, Inc. are
* Copyright (c) 2014-2016 Cisco Systems, Inc. All Rights Reserved.
*/
#ifndef CJOSE_CJOSE_H
#define CJOSE_CJOSE_H
#include "version.h"
#include "error.h"
#include "base64.h"
#include "header.h"
#include "jwk.h"
#include "jwe.h"
#include "jws.h"
#include "util.h"
#endif // CJOSE_CJOSE_H
|