|
| EncryptedArray (const Context &context, const NTL::ZZX &G=NTL::ZZX(1, 1)) |
| constructor: G defaults to the monomial X, PAlgebraMod from context More...
|
|
| EncryptedArray (const Context &context, const PAlgebraMod &_alMod) |
| constructor: G defaults to F0, PAlgebraMod explicitly given More...
|
|
EncryptedArray & | operator= (const EncryptedArray &other) |
|
template<typename type > |
const EncryptedArrayDerived< type > & | getDerived (type) const |
| downcast operator example: const EncryptedArrayDerived<PA_GF2>& rep = ea.getDerived(PA_GF2()); More...
|
|
const EncryptedArrayCx & | getCx () const |
|
|
PA_tag | getTag () const |
|
template<template< typename > class T, typename... Args> |
void | dispatch (Args &&... args) const |
|
const Context & | getContext () const |
|
const PAlgebraMod & | getAlMod () const |
|
const PAlgebra & | getPAlgebra () const |
|
long | getDegree () const |
|
void | rotate (Ctxt &ctxt, long k) const |
|
void | shift (Ctxt &ctxt, long k) const |
|
void | rotate1D (Ctxt &ctxt, long i, long k, bool dc=false) const |
|
void | shift1D (Ctxt &ctxt, long i, long k) const |
|
template<typename PTXT , typename ARRAY > |
void | encode (PTXT &ptxt, const ARRAY &array) const |
|
void | encodeUnitSelector (zzX &ptxt, long i) const |
|
template<typename PTXT , typename ARRAY > |
void | decode (ARRAY &array, const PTXT &ptxt) const |
|
template<typename T > |
void | random (std::vector< T > &array) const |
|
template<typename T > |
void | encrypt (Ctxt &ctxt, const PubKey &pKey, const T &ptxt) const |
|
template<typename T > |
void | decrypt (const Ctxt &ctxt, const SecKey &sKey, T &ptxt) const |
|
void | buildLinPolyCoeffs (std::vector< NTL::ZZX > &C, const std::vector< NTL::ZZX > &L) const |
|
void | restoreContext () const |
|
void | restoreContextForG () const |
|
long | size () const |
|
long | dimension () const |
|
long | sizeOfDimension (long i) const |
|
long | nativeDimension (long i) const |
|
long | coordinate (long i, long k) const |
|
long | addCoord (long i, long k, long offset) const |
|
template<typename U > |
void | rotate1D (std::vector< U > &out, const std::vector< U > &in, long i, long offset) const |
| rotate an array by offset in the i'th dimension (output should not alias input) More...
|
|
A simple wrapper for a smart pointer to an EncryptedArrayBase. This is the interface that higher-level code should use.