mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-04-10 14:30:02 +08:00
CHG: fixes a "indent" warning
This commit is contained in:
parent
1c59e80aba
commit
e1deabc0eb
1 changed files with 1 additions and 1 deletions
|
@ -210,7 +210,7 @@ void permute(const uint8_t *ptable, const uint8_t *in, uint8_t *out){
|
||||||
for(byte=0; byte<ob; ++byte){
|
for(byte=0; byte<ob; ++byte){
|
||||||
uint8_t x,t=0;
|
uint8_t x,t=0;
|
||||||
for(bit=0; bit<8; ++bit){
|
for(bit=0; bit<8; ++bit){
|
||||||
x=*ptable++ -1 ;
|
x = *ptable++ - 1;
|
||||||
t<<=1;
|
t<<=1;
|
||||||
if((in[x/8]) & (0x80>>(x%8)) ){
|
if((in[x/8]) & (0x80>>(x%8)) ){
|
||||||
t|=0x01;
|
t|=0x01;
|
||||||
|
|
Loading…
Add table
Reference in a new issue