mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 02:27:26 -07:00
typos
This commit is contained in:
parent
34a695547c
commit
232843477c
37 changed files with 115 additions and 129 deletions
|
@ -18,7 +18,7 @@
|
|||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* Modifed Iceman, 2020
|
||||
* Modified Iceman, 2020
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
|
@ -470,7 +470,7 @@ static uint32_t ice_sm_right(const uint8_t *ks, uint8_t *mask, vector<uint64_t>
|
|||
pcrstates->push_back(it->second);
|
||||
}
|
||||
|
||||
// Reverse the vector order (so the higest bin comes first)
|
||||
// Reverse the vector order (so the highest bin comes first)
|
||||
reverse(pcrstates->begin(), pcrstates->end());
|
||||
|
||||
return g_topbits;
|
||||
|
@ -583,7 +583,7 @@ static void ice_sm_left(const uint8_t *ks, uint8_t *mask, vector<cs_t> *pcstates
|
|||
for (it = bincstates.begin(); it != bincstates.end(); ++it) {
|
||||
pcstates->push_back(it->second);
|
||||
}
|
||||
// Reverse the vector order (so the higest bin comes first)
|
||||
// Reverse the vector order (so the highest bin comes first)
|
||||
reverse(pcstates->begin(), pcstates->end());
|
||||
}
|
||||
|
||||
|
@ -649,7 +649,7 @@ static inline uint32_t sm_right(const uint8_t *ks, uint8_t *mask, vector<uint64_
|
|||
pcrstates->push_back(it->second);
|
||||
}
|
||||
|
||||
// Reverse the vector order (so the higest bin comes first)
|
||||
// Reverse the vector order (so the highest bin comes first)
|
||||
reverse(pcrstates->begin(), pcrstates->end());
|
||||
|
||||
return topbits;
|
||||
|
@ -825,7 +825,7 @@ static inline void sm_left(const uint8_t *ks, uint8_t *mask, vector<cs_t> *pcsta
|
|||
for (it = bincstates.begin(); it != bincstates.end(); ++it) {
|
||||
pcstates->push_back(it->second);
|
||||
}
|
||||
// Reverse the vector order (so the higest bin comes first)
|
||||
// Reverse the vector order (so the highest bin comes first)
|
||||
reverse(pcstates->begin(), pcstates->end());
|
||||
}
|
||||
|
||||
|
@ -991,8 +991,8 @@ int main(int argc, const char *argv[]) {
|
|||
|
||||
uint64_t nCi; // Card random
|
||||
uint64_t nQ; // Reader random
|
||||
uint64_t nCh; // Reader challange
|
||||
uint64_t nCi_1; // Card anwser
|
||||
uint64_t nCh; // Reader challenge
|
||||
uint64_t nCi_1; // Card answer
|
||||
|
||||
if ((argc != 2) && (argc != 5)) {
|
||||
printf("SecureMemory recovery - (c) Radboud University Nijmegen\n\n");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue