recover_pk.py: replace secp192r1 by prime192v1
[RRG-proxmark3.git] / common / commonutil.h
blob0b187ef10263564116ea50c9cc4e22b542ce8045
1 //-----------------------------------------------------------------------------
2 // Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
3 //
4 // This program is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // See LICENSE.txt for the text of the license.
15 //-----------------------------------------------------------------------------
16 // Utility functions used in many places, not specific to any piece of code.
17 //-----------------------------------------------------------------------------
19 #ifndef __COMMONUTIL_H
20 #define __COMMONUTIL_H
22 #include "common.h"
24 // endian change for 16bit
25 #ifdef __GNUC__
26 #ifndef BSWAP_16
27 #define BSWAP_16(x) __builtin_bswap16(x)
28 #endif
29 #else
30 #ifdef _MSC_VER
31 #ifndef BSWAP_16
32 #define BSWAP_16(x) _byteswap_ushort(x)
33 #endif
34 #else
35 #ifndef BSWAP_16
36 # define BSWAP_16(x) ((( ((x) & 0xFF00 ) >> 8))| ( (((x) & 0x00FF) << 8)))
37 #endif
38 #endif
39 #endif
41 #ifndef BITMASK
42 # define BITMASK(X) (1 << (X))
43 #endif
44 #ifndef ARRAYLEN
45 # define ARRAYLEN(x) (sizeof(x)/sizeof((x)[0]))
46 #endif
48 #ifndef NTIME
49 # define NTIME(n) for (int _index = 0; _index < n; _index++)
50 #endif
52 #ifndef REV8
53 #define REV8(x) ((((x)>>7)&1)+((((x)>>6)&1)<<1)+((((x)>>5)&1)<<2)+((((x)>>4)&1)<<3)+((((x)>>3)&1)<<4)+((((x)>>2)&1)<<5)+((((x)>>1)&1)<<6)+(((x)&1)<<7))
54 #endif
56 #ifndef REV16
57 #define REV16(x) (REV8(x) + (REV8 ((x) >> 8) << 8))
58 #endif
60 #ifndef REV32
61 #define REV32(x) (REV16(x) + (REV16((x) >> 16) << 16))
62 #endif
64 #ifndef REV64
65 #define REV64(x) (REV32(x) + ((uint64_t)(REV32((x) >> 32) << 32)))
66 #endif
68 typedef struct {
69 int Year;
70 int Month;
71 int Day;
72 int Hour;
73 int Minute;
74 } Date_t;
77 int calculate_hours_between_dates(const Date_t s, Date_t *e);
78 void add_hours(Date_t *d, int hours_to_add);
79 void add_days(Date_t *d, int days_to_add);
80 uint8_t days_in_month(int year, int month);
83 extern struct version_information_t g_version_information;
84 void FormatVersionInformation(char *dst, int len, const char *prefix, const void *version_info);
85 void format_version_information_short(char *dst, int len, const void *version_info);
87 uint32_t reflect(uint32_t v, int b); // used in crc.c ...
88 uint8_t reflect8(uint8_t b); // dedicated 8bit reversal
89 uint16_t reflect16(uint16_t b); // dedicated 16bit reversal
90 uint32_t reflect32(uint32_t b); // dedicated 32bit reversal
91 uint64_t reflect48(uint64_t b); // dedicated 48bit reversal
92 uint64_t reflect64(uint64_t b); // dedicated 64bit reversal
94 void num_to_bytes(uint64_t n, size_t len, uint8_t *dest);
95 uint64_t bytes_to_num(const uint8_t *src, size_t len);
97 // LE and BE to/from memory
98 uint16_t MemLeToUint2byte(const uint8_t *data);
99 uint32_t MemLeToUint3byte(const uint8_t *data);
100 uint32_t MemLeToUint4byte(const uint8_t *data);
101 uint64_t MemLeToUint5byte(const uint8_t *data);
102 uint64_t MemLeToUint6byte(const uint8_t *data);
103 uint64_t MemLeToUint7byte(const uint8_t *data);
104 uint64_t MemLeToUint8byte(const uint8_t *data);
106 uint16_t MemBeToUint2byte(const uint8_t *data);
107 uint32_t MemBeToUint3byte(const uint8_t *data);
108 uint32_t MemBeToUint4byte(const uint8_t *data);
109 uint64_t MemBeToUint5byte(const uint8_t *data);
110 uint64_t MemBeToUint6byte(const uint8_t *data);
111 uint64_t MemBeToUint7byte(const uint8_t *data);
112 uint64_t MemBeToUint8byte(const uint8_t *data);
114 void Uint2byteToMemLe(uint8_t *data, uint16_t value);
115 void Uint3byteToMemLe(uint8_t *data, uint32_t value);
116 void Uint4byteToMemLe(uint8_t *data, uint32_t value);
117 void Uint5byteToMemLe(uint8_t *data, uint64_t value);
118 void Uint6byteToMemLe(uint8_t *data, uint64_t value);
119 void Uint7byteToMemLe(uint8_t *data, uint64_t value);
120 void Uint8byteToMemLe(uint8_t *data, uint64_t value);
122 void Uint2byteToMemBe(uint8_t *data, uint16_t value);
123 void Uint3byteToMemBe(uint8_t *data, uint32_t value);
124 void Uint4byteToMemBe(uint8_t *data, uint32_t value);
125 void Uint5byteToMemBe(uint8_t *data, uint64_t value);
126 void Uint6byteToMemBe(uint8_t *data, uint64_t value);
127 void Uint7byteToMemBe(uint8_t *data, uint64_t value);
128 void Uint8byteToMemBe(uint8_t *data, uint64_t value);
130 // rotate left byte array
131 void rol(uint8_t *data, const size_t len);
132 void ror(uint8_t *data, const size_t len);
134 void lsl(uint8_t *data, size_t len);
135 uint32_t le24toh(const uint8_t data[3]);
136 void htole24(uint32_t val, uint8_t data[3]);
138 // rol on a u32
139 uint32_t rotl(uint32_t a, uint8_t n);
140 uint32_t rotr(uint32_t a, uint8_t n);
142 uint16_t get_sw(const uint8_t *d, uint16_t n);
144 void reverse_array(uint8_t *d, size_t n);
145 void reverse_array_copy(const uint8_t *src, int src_len, uint8_t *dest);
147 bool hexstr_to_byte_array(const char *hexstr, uint8_t *d, size_t *n);
149 void reverse_arraybytes(uint8_t *arr, size_t len);
150 void reverse_arraybytes_copy(uint8_t *arr, uint8_t *dest, size_t len);
152 size_t concatbits(uint8_t *dest, int dest_offset, const uint8_t *src, int src_offset, size_t nbits);
153 int char2int(char c);
154 int hexstr2ByteArr(const char *hexstr, unsigned char *array, size_t asize);
155 #endif