2013-05-07 05:11:59 +00:00
|
|
|
/*
|
2013-12-04 06:26:55 +00:00
|
|
|
Copyright (C) 2013 Paul Gardner-Stephen
|
|
|
|
Copyright (C) 2013 Serval Project Inc.
|
2013-05-07 05:11:59 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
2014-05-23 08:19:00 +00:00
|
|
|
#include "constants.h"
|
|
|
|
#include "os.h"
|
|
|
|
#include "cli.h"
|
2013-05-07 05:11:59 +00:00
|
|
|
|
|
|
|
int nonce_initialised=0;
|
|
|
|
unsigned char nonce_buffer[128];
|
|
|
|
|
|
|
|
int generate_nonce(unsigned char *nonce,int bytes)
|
|
|
|
{
|
|
|
|
if (bytes<1||bytes>128) return -1;
|
|
|
|
start:
|
|
|
|
if (!nonce_initialised) {
|
|
|
|
if (urandombytes(nonce_buffer,128))
|
|
|
|
return -1;
|
|
|
|
nonce_initialised=1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Increment nonce
|
|
|
|
int i;
|
|
|
|
for(i=0;i<128;i++)
|
|
|
|
{
|
|
|
|
unsigned char b=nonce_buffer[i]+1;
|
|
|
|
nonce_buffer[i]=b;
|
|
|
|
if (b) break;
|
|
|
|
}
|
|
|
|
if (i>=128) {
|
|
|
|
nonce_initialised=0;
|
|
|
|
goto start;
|
|
|
|
}
|
|
|
|
|
|
|
|
bcopy(nonce_buffer,nonce,bytes);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-12-09 07:52:18 +00:00
|
|
|
int app_nonce_test(const struct cli_parsed *UNUSED(parsed), struct cli_context *context)
|
2013-05-07 05:11:59 +00:00
|
|
|
{
|
|
|
|
int i,j;
|
|
|
|
unsigned char nonces[0x10001][32];
|
|
|
|
for(i=0;i<0x10001;i++)
|
|
|
|
{
|
|
|
|
if (generate_nonce(&nonces[i][0],32))
|
2013-07-03 07:21:27 +00:00
|
|
|
return WHYF("Failed to generate nonce #%d\n",i);
|
2013-05-07 05:11:59 +00:00
|
|
|
for(j=0;j<i;j++) {
|
2013-07-03 07:21:27 +00:00
|
|
|
if (!memcmp(&nonces[i][0],&nonces[j][0],32))
|
|
|
|
return WHYF("Nonce #%d is the same as nonce #%d\n",i,j);
|
2013-05-07 05:11:59 +00:00
|
|
|
}
|
2013-07-03 07:21:27 +00:00
|
|
|
if (!(random()&0xff))
|
|
|
|
cli_printf(context, "Nonce #%d = %02x%02x%02x%02x...\n",
|
2013-05-07 05:11:59 +00:00
|
|
|
i,nonces[i][0],nonces[i][1],nonces[i][2],nonces[i][3]);
|
|
|
|
}
|
2013-07-03 07:21:27 +00:00
|
|
|
cli_printf(context, "Test passed\n");
|
2013-05-07 05:11:59 +00:00
|
|
|
return 0;
|
|
|
|
}
|