blob: 592780ea091601c906ec7e34eae3268bf6431d8b [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "amcl.h"
#include "utils.h"
void hex2bytes(char *hex, char *bin)
{
int i;
char v;
int len=strlen(hex);
for (i = 0; i < len/2; i++) {
char c = hex[2*i];
if (c >= '0' && c <= '9') {
v = c - '0';
} else if (c >= 'A' && c <= 'F') {
v = c - 'A' + 10;
} else if (c >= 'a' && c <= 'f') {
v = c - 'a' + 10;
} else {
v = 0;
}
v <<= 4;
c = hex[2*i + 1];
if (c >= '0' && c <= '9') {
v += c - '0';
} else if (c >= 'A' && c <= 'F') {
v += c - 'A' + 10;
} else if (c >= 'a' && c <= 'f') {
v += c - 'a' + 10;
} else {
v = 0;
}
bin[i] = v;
}
}
/*! \brief Generate a random six digit one time password
*
* Generates a random six digit one time password
*
* @param RNG random number generator
* @return OTP One Time Password
*/
int generateOTP(csprng* RNG)
{
int OTP=0;
int i = 0;
int val = 0;
char byte[6] = {0};
/* Generate random 6 digit random value */
for (i=0;i<6;i++)
{
byte[i]=RAND_byte(RNG);
val = byte[i];
OTP = ((abs(val) % 10) * pow(10.0,i)) + OTP;
}
return OTP;
}
/*! \brief Generate a random Octet
*
* Generate a random Octet
*
* @param RNG random number generator
* @return randomValue random Octet
*/
void generateRandom(csprng *RNG,octet *randomValue)
{
int i;
for (i=0;i<randomValue->len;i++)
randomValue->val[i]=RAND_byte(RNG);
}