GET_BYTE is only used within mbedTLS.
 
Symbols
loading...
Files
loading...

GET_BYTE macro

Syntax

#define GET_BYTE( X, i ) \     ( ( ( X )->p[( i ) / ciL] >> ( ( ( i ) % ciL ) * 8 ) ) & 0xff )

Arguments

X

i

References

LocationText
bignum.c:345
#define GET_BYTE( X, i ) \
bignum.c:896
if( GET_BYTE( X, i ) != 0 )
bignum.c:902
p[bytes_to_copy - i - 1] = GET_BYTE( X, i );