1234567891011121314151617181920212223242526272829303132 |
- /*
- * decapsulation.h
- *
- * Created on: May 4, 2018
- * Author: vader
- */
- #ifndef INCLUDE_DECAPSULATION_H_
- #define INCLUDE_DECAPSULATION_H_
- #include <stdio.h>
- #include <stdlib.h>
- #include "fips202.h"
- #include "structures/matrix_operations.h"
- #include "gf/gf.h"
- #include "util/util.h"
- #include "parameters/param.h"
- #include "decoding.h"
- #include "definitions.h"
- extern int decapsulation(unsigned char *secret_shared,
- const unsigned char *cipher_text, const unsigned char *secret_key);
- extern int decrypt(unsigned char *secret_shared,
- const unsigned char *cipher_text, const gf *v, const gf *y);
- #endif /* INCLUDE_DECAPSULATION_H_ */
|