26 lines
295 B
C++
26 lines
295 B
C++
|
|
#include "codecrypt.h"
|
|
|
|
using namespace ccr;
|
|
|
|
void permutation::compute_inversion (permutation&r)
|
|
{
|
|
|
|
}
|
|
|
|
void permutation::generate_random (uint size, prng&rng)
|
|
{
|
|
|
|
}
|
|
|
|
void permutation::permute_cols (const matrix&a, matrix&r)
|
|
{
|
|
|
|
}
|
|
|
|
void permutation::permute_rows (const matrix&a, matrix&r)
|
|
{
|
|
|
|
}
|
|
|