]> AND Private Git Repository - Cipher_code.git/blob - IDA_new/gf-complete/include/gf_method.h
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
add
[Cipher_code.git] / IDA_new / gf-complete / include / gf_method.h
1 /*
2  * GF-Complete: A Comprehensive Open Source Library for Galois Field Arithmetic
3  * James S. Plank, Ethan L. Miller, Kevin M. Greenan,
4  * Benjamin A. Arnold, John A. Burnum, Adam W. Disney, Allen C. McBride.
5  *
6  * gf_method.h
7  *
8  * Parses argv to figure out the flags and arguments.  Creates the gf.
9  */
10
11 #pragma once
12
13 #include "gf_complete.h"
14
15 /* Parses argv starting at "starting".  
16    
17    Returns 0 on failure.
18    On success, it returns one past the last argument it read in argv. */
19
20 extern int create_gf_from_argv(gf_t *gf, int w, int argc, char **argv, int starting);