-
Notifications
You must be signed in to change notification settings - Fork 0
/
password_lib.h
46 lines (31 loc) · 1.19 KB
/
password_lib.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
============================================================================
Name : password_lib.h
Author : Louis-Erig HERVE
Version : 1.0
Date : 2021 - September - 19
Copyright : None
Description : Password generator library source
============================================================================
*/
#ifndef PASSWORD_LIB_H_
#define PASSWORD_LIB_H_
/* Include ------------------------------------------------------------------*/
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <errno.h>
#include <time.h>
#include <sys/time.h>
/* Define -------------------------------------------------------------------*/
/* External variables -------------------------------------------------------*/
/* Typedef ------------------------------------------------------------------*/
/* Function prototypes ------------------------------------------------------*/
void InitPasswordLib(void);
void GeneratePassword(uint32_t PassowrdLen,
uint8_t * CharacterList,
uint32_t CharacterListSize,
uint8_t * OutputPassword);
#endif /* PASSWORD_LIB_H_ */
/* End of file */