Timing attack against DES 0.1
pcc.h
Go to the documentation of this file.
1// MAIN-ONLY: DO NOT MODIFY THIS FILE
2
3/*
4 * Copyright (C) Telecom Paris
5 *
6 * This file must be used under the terms of the CeCILL. This source
7 * file is licensed as described in the file COPYING, which you should
8 * have received as part of this distribution. The terms are also
9 * available at:
10 * https://cecill.info/licences/Licence_CeCILL_V2.1-en.html
11*/
12
13#ifndef PCC_H
14#define PCC_H
15
92 float *pcc,
93 int samples_length,
94 int ny,
95 float *x,
96 int **y
97 );
98
153 float **pcc,
154 int samples_length,
155 int vectors_length,
156 int ny,
157 float **x,
158 int **y
159 );
160
161#endif
163// vim: set tabstop=4 softtabstop=4 shiftwidth=4 noexpandtab textwidth=0:
void pcc_v2s(float **pcc, int samples_length, int vectors_length, int ny, float **x, int **y)
The `pcc_v2s` (v2s for vector-to-scalar) function estimates the PCC between a vector floating point r...
void pcc_s2s(float *pcc, int samples_length, int ny, float *x, int **y)
The `pcc_s2s` (s2s for scalar-to-scalar) function estimates the PCC between a floating point random v...