/usr/include/xmlsec1/xmlsec/bn.h is in libxmlsec1-dev 1.2.18-2ubuntu1.
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | /**
* XML Security Library (http://www.aleksey.com/xmlsec).
*
* Simple Big Numbers processing.
*
* This is free software; see Copyright file in the source
* distribution for preciese wording.
*
* Copyright (C) 2002-2003 Aleksey Sanin <aleksey@aleksey.com>
*/
#ifndef __XMLSEC_BN_H__
#define __XMLSEC_BN_H__
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#include <libxml/tree.h>
#include <xmlsec/xmlsec.h>
#include <xmlsec/buffer.h>
typedef xmlSecBuffer xmlSecBn,
*xmlSecBnPtr;
/**
* xmlSecBnFormat:
* @xmlSecBnBase64: the base64 decoded binary blob.
* @xmlSecBnHex: the hex number.
* @xmlSecBnDec: the decimal number.
*
* The big numbers formats.
*/
typedef enum {
xmlSecBnBase64,
xmlSecBnHex,
xmlSecBnDec
} xmlSecBnFormat;
XMLSEC_EXPORT xmlSecBnPtr xmlSecBnCreate (xmlSecSize size);
XMLSEC_EXPORT void xmlSecBnDestroy (xmlSecBnPtr bn);
XMLSEC_EXPORT int xmlSecBnInitialize (xmlSecBnPtr bn,
xmlSecSize size);
XMLSEC_EXPORT void xmlSecBnFinalize (xmlSecBnPtr bn);
XMLSEC_EXPORT xmlSecByte* xmlSecBnGetData (xmlSecBnPtr bn);
XMLSEC_EXPORT int xmlSecBnSetData (xmlSecBnPtr bn,
const xmlSecByte* data,
xmlSecSize size);
XMLSEC_EXPORT xmlSecSize xmlSecBnGetSize (xmlSecBnPtr bn);
XMLSEC_EXPORT void xmlSecBnZero (xmlSecBnPtr bn);
XMLSEC_EXPORT int xmlSecBnFromString (xmlSecBnPtr bn,
const xmlChar* str,
xmlSecSize base);
XMLSEC_EXPORT xmlChar* xmlSecBnToString (xmlSecBnPtr bn,
xmlSecSize base);
XMLSEC_EXPORT int xmlSecBnFromHexString (xmlSecBnPtr bn,
const xmlChar* str);
XMLSEC_EXPORT xmlChar* xmlSecBnToHexString (xmlSecBnPtr bn);
XMLSEC_EXPORT int xmlSecBnFromDecString (xmlSecBnPtr bn,
const xmlChar* str);
XMLSEC_EXPORT xmlChar* xmlSecBnToDecString (xmlSecBnPtr bn);
XMLSEC_EXPORT int xmlSecBnMul (xmlSecBnPtr bn,
int multiplier);
XMLSEC_EXPORT int xmlSecBnDiv (xmlSecBnPtr bn,
int divider,
int* mod);
XMLSEC_EXPORT int xmlSecBnAdd (xmlSecBnPtr bn,
int delta);
XMLSEC_EXPORT int xmlSecBnReverse (xmlSecBnPtr bn);
XMLSEC_EXPORT int xmlSecBnCompare (xmlSecBnPtr bn,
const xmlSecByte* data,
xmlSecSize dataSize);
XMLSEC_EXPORT int xmlSecBnCompareReverse (xmlSecBnPtr bn,
const xmlSecByte* data,
xmlSecSize dataSize);
XMLSEC_EXPORT int xmlSecBnGetNodeValue (xmlSecBnPtr bn,
xmlNodePtr cur,
xmlSecBnFormat format,
int reverse);
XMLSEC_EXPORT int xmlSecBnSetNodeValue (xmlSecBnPtr bn,
xmlNodePtr cur,
xmlSecBnFormat format,
int reverse,
int addLineBreaks);
XMLSEC_EXPORT int xmlSecBnBlobSetNodeValue (const xmlSecByte* data,
xmlSecSize dataSize,
xmlNodePtr cur,
xmlSecBnFormat format,
int reverse,
int addLineBreaks);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __XMLSEC_BN_H__ */
|