mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
Reorder client src directories
This commit is contained in:
parent
94192d0976
commit
81bc0bc2b9
387 changed files with 73 additions and 106 deletions
53
client/deps/amiitool/keygen.c
Normal file
53
client/deps/amiitool/keygen.c
Normal file
|
@ -0,0 +1,53 @@
|
|||
/*
|
||||
* (c) 2015-2017 Marcos Del Sol Vives
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*/
|
||||
|
||||
#include "drbg.h"
|
||||
#include "keygen.h"
|
||||
#include <assert.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
void nfc3d_keygen_prepare_seed(const nfc3d_keygen_masterkeys *baseKeys, const uint8_t *baseSeed, uint8_t *output, size_t *outputSize) {
|
||||
assert(baseKeys != NULL);
|
||||
assert(baseSeed != NULL);
|
||||
assert(output != NULL);
|
||||
assert(outputSize != NULL);
|
||||
|
||||
uint8_t *start = output;
|
||||
|
||||
// 1: Copy whole type string
|
||||
output = (uint8_t *)strcpy((char *)output, baseKeys->typeString);
|
||||
|
||||
// 2: Append (16 - magicBytesSize) from the input seed
|
||||
size_t leadingSeedBytes = 16 - baseKeys->magicBytesSize;
|
||||
memcpy(output, baseSeed, leadingSeedBytes);
|
||||
output += leadingSeedBytes;
|
||||
|
||||
// 3: Append all bytes from magicBytes
|
||||
memcpy(output, baseKeys->magicBytes, baseKeys->magicBytesSize);
|
||||
output += baseKeys->magicBytesSize;
|
||||
|
||||
// 4: Append bytes 0x10-0x1F from input seed
|
||||
memcpy(output, baseSeed + 0x10, 16);
|
||||
output += 16;
|
||||
|
||||
// 5: Xor last bytes 0x20-0x3F of input seed with AES XOR pad and append them
|
||||
unsigned int i;
|
||||
for (i = 0; i < 32; i++) {
|
||||
output[i] = baseSeed[i + 32] ^ baseKeys->xorPad[i];
|
||||
}
|
||||
output += 32;
|
||||
|
||||
*outputSize = output - start;
|
||||
}
|
||||
|
||||
void nfc3d_keygen(const nfc3d_keygen_masterkeys *baseKeys, const uint8_t *baseSeed, nfc3d_keygen_derivedkeys *derivedKeys) {
|
||||
uint8_t preparedSeed[NFC3D_DRBG_MAX_SEED_SIZE];
|
||||
size_t preparedSeedSize;
|
||||
|
||||
nfc3d_keygen_prepare_seed(baseKeys, baseSeed, preparedSeed, &preparedSeedSize);
|
||||
nfc3d_drbg_generate_bytes(baseKeys->hmacKey, sizeof(baseKeys->hmacKey), preparedSeed, preparedSeedSize, (uint8_t *) derivedKeys, sizeof(*derivedKeys));
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue