Move uuid_gen_mac_addr() from uuid.c into src/wps
This removes the only src/crypto dependency from src/utils files.
This commit is contained in:
parent
197ef6abef
commit
120158cc8b
4 changed files with 31 additions and 32 deletions
|
@ -15,8 +15,6 @@
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
#include "crypto.h"
|
|
||||||
#include "sha1.h"
|
|
||||||
#include "uuid.h"
|
#include "uuid.h"
|
||||||
|
|
||||||
int uuid_str2bin(const char *str, u8 *bin)
|
int uuid_str2bin(const char *str, u8 *bin)
|
||||||
|
@ -77,31 +75,3 @@ int is_nil_uuid(const u8 *uuid)
|
||||||
return 0;
|
return 0;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void uuid_gen_mac_addr(const u8 *mac_addr, u8 *uuid)
|
|
||||||
{
|
|
||||||
const u8 *addr[2];
|
|
||||||
size_t len[2];
|
|
||||||
u8 hash[SHA1_MAC_LEN];
|
|
||||||
u8 nsid[16] = {
|
|
||||||
0x52, 0x64, 0x80, 0xf8,
|
|
||||||
0xc9, 0x9b,
|
|
||||||
0x4b, 0xe5,
|
|
||||||
0xa6, 0x55,
|
|
||||||
0x58, 0xed, 0x5f, 0x5d, 0x60, 0x84
|
|
||||||
};
|
|
||||||
|
|
||||||
addr[0] = nsid;
|
|
||||||
len[0] = sizeof(nsid);
|
|
||||||
addr[1] = mac_addr;
|
|
||||||
len[1] = 6;
|
|
||||||
sha1_vector(2, addr, len, hash);
|
|
||||||
os_memcpy(uuid, hash, 16);
|
|
||||||
|
|
||||||
/* Version: 5 = named-based version using SHA-1 */
|
|
||||||
uuid[6] = (5 << 4) | (uuid[6] & 0x0f);
|
|
||||||
|
|
||||||
/* Variant specified in RFC 4122 */
|
|
||||||
uuid[8] = 0x80 | (uuid[8] & 0x3f);
|
|
||||||
}
|
|
||||||
|
|
|
@ -20,6 +20,5 @@
|
||||||
int uuid_str2bin(const char *str, u8 *bin);
|
int uuid_str2bin(const char *str, u8 *bin);
|
||||||
int uuid_bin2str(const u8 *bin, char *str, size_t max_len);
|
int uuid_bin2str(const u8 *bin, char *str, size_t max_len);
|
||||||
int is_nil_uuid(const u8 *uuid);
|
int is_nil_uuid(const u8 *uuid);
|
||||||
void uuid_gen_mac_addr(const u8 *mac_addr, u8 *uuid);
|
|
||||||
|
|
||||||
#endif /* UUID_H */
|
#endif /* UUID_H */
|
||||||
|
|
|
@ -686,5 +686,6 @@ int wps_er_learn(struct wps_er *er, const u8 *uuid, const u8 *pin,
|
||||||
int wps_dev_type_str2bin(const char *str, u8 dev_type[WPS_DEV_TYPE_LEN]);
|
int wps_dev_type_str2bin(const char *str, u8 dev_type[WPS_DEV_TYPE_LEN]);
|
||||||
char * wps_dev_type_bin2str(const u8 dev_type[WPS_DEV_TYPE_LEN], char *buf,
|
char * wps_dev_type_bin2str(const u8 dev_type[WPS_DEV_TYPE_LEN], char *buf,
|
||||||
size_t buf_len);
|
size_t buf_len);
|
||||||
|
void uuid_gen_mac_addr(const u8 *mac_addr, u8 *uuid);
|
||||||
|
|
||||||
#endif /* WPS_H */
|
#endif /* WPS_H */
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
* Wi-Fi Protected Setup - common functionality
|
* Wi-Fi Protected Setup - common functionality
|
||||||
* Copyright (c) 2008, Jouni Malinen <j@w1.fi>
|
* Copyright (c) 2008-2009, Jouni Malinen <j@w1.fi>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
* it under the terms of the GNU General Public License version 2 as
|
||||||
|
@ -16,6 +16,7 @@
|
||||||
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
#include "dh_group5.h"
|
#include "dh_group5.h"
|
||||||
|
#include "sha1.h"
|
||||||
#include "sha256.h"
|
#include "sha256.h"
|
||||||
#include "aes_wrap.h"
|
#include "aes_wrap.h"
|
||||||
#include "crypto.h"
|
#include "crypto.h"
|
||||||
|
@ -566,3 +567,31 @@ char * wps_dev_type_bin2str(const u8 dev_type[WPS_DEV_TYPE_LEN], char *buf,
|
||||||
|
|
||||||
return buf;
|
return buf;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void uuid_gen_mac_addr(const u8 *mac_addr, u8 *uuid)
|
||||||
|
{
|
||||||
|
const u8 *addr[2];
|
||||||
|
size_t len[2];
|
||||||
|
u8 hash[SHA1_MAC_LEN];
|
||||||
|
u8 nsid[16] = {
|
||||||
|
0x52, 0x64, 0x80, 0xf8,
|
||||||
|
0xc9, 0x9b,
|
||||||
|
0x4b, 0xe5,
|
||||||
|
0xa6, 0x55,
|
||||||
|
0x58, 0xed, 0x5f, 0x5d, 0x60, 0x84
|
||||||
|
};
|
||||||
|
|
||||||
|
addr[0] = nsid;
|
||||||
|
len[0] = sizeof(nsid);
|
||||||
|
addr[1] = mac_addr;
|
||||||
|
len[1] = 6;
|
||||||
|
sha1_vector(2, addr, len, hash);
|
||||||
|
os_memcpy(uuid, hash, 16);
|
||||||
|
|
||||||
|
/* Version: 5 = named-based version using SHA-1 */
|
||||||
|
uuid[6] = (5 << 4) | (uuid[6] & 0x0f);
|
||||||
|
|
||||||
|
/* Variant specified in RFC 4122 */
|
||||||
|
uuid[8] = 0x80 | (uuid[8] & 0x3f);
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue