keys.h
An object that mimics the functionality of the Ctxt object, and acts as a convenient entry point for ...
Definition: Ptxt.h:280
SecKey()=delete
bool haveKeySWmatrix(const SKHandle &from, long toID=0) const
Definition: keys.cpp:288
long getKSStrategy(long dim) const
get KS strategy for dimension dim dim == -1 is Frobenius
Definition: keys.cpp:317
bool haveAnyKeySWmatrix(const SKHandle &from) const
Definition: keys.cpp:301
double RLWE1(DoubleCRT &c0, const DoubleCRT &c1, const DoubleCRT &s, long p)
Same as RLWE, but assumes that c1 is already chosen by the caller.
Definition: keys.cpp:30
ThinRecryptData rcData
Bootstrapping-related data in the context.
Definition: Context.h:380
friend std::ostream & operator<<(std::ostream &str, const SecKey &sk)
Definition: keys.cpp:1292
Implementing polynomials (elements in the ring R_Q) in double-CRT form.
Definition: DoubleCRT.h:76
friend void ::helib::writeSecKeyBinary(std::ostream &str, const SecKey &sk)
long Encrypt(Ctxt &ciphertxt, const Ptxt< Scheme > &plaintxt, long ptxtSpace=0) const
Encrypts a plaintext into a ciphertext.
friend std::istream & operator>>(std::istream &str, SecKey &sk)
Definition: keys.cpp:1301
void writePubKeyBinary(std::ostream &str, const PubKey &pk)
Definition: keys.cpp:726
bool isReachable(long k, long keyID=0) const
Is it possible to re-linearize the automorphism X -> X^k See Section 3.2.2 in the design document (Ke...
Definition: keys.cpp:312
friend void ::helib::readPubKeyBinary(std::istream &str, PubKey &pk)
long GenSecKey(long hwt=0, long ptxtSpace=0, long maxDegKswitch=3)
Definition: keys.cpp:871
long skHwt
Hamming weight of recryption secret key.
Definition: recryption.h:49
void Decrypt(Ptxt< Scheme > &plaintxt, const Ctxt &ciphertxt) const
Decrypt a ciphertext into a plaintext.
void setKeySwitchMap(long keyId=0)
Compute the reachability graph of key-switching matrices See Section 3.2.2 in the design document (Ke...
Definition: keys.cpp:118
A handle, describing the secret-key element that "matches" a part, of the form s^r(X^t).
Definition: Ctxt.h:78
friend void ::helib::writePubKeyBinary(std::ostream &str, const PubKey &pk)
static long ePlusR(long p)
void GenKeySWmatrix(long fromSPower, long fromXPower, long fromKeyIdx=0, long toKeyIdx=0, long ptxtSpace=0)
Definition: keys.cpp:888
friend std::ostream & operator<<(std::ostream &str, const PubKey &pk)
Definition: keys.cpp:633
~SecKey() override=default
void writeSecKeyBinary(std::ostream &str, const SecKey &sk)
Definition: keys.cpp:1318
double securityLevel() const
An estimate for the security level. The estimated security level for the "worst" secret-key associate...
Definition: keys.h:203
long genRecryptData()
Generate bootstrapping data if needed, returns index of key.
Definition: keys.cpp:1257
const KeySwitch & getAnyKeySWmatrix(const SKHandle &from) const
Is there a matrix from this key to any base key?
Definition: keys.cpp:191
void CKKSencrypt(Ctxt &ciphertxt, const NTL::ZZX &plaintxt, double ptxtSize=1.0, double scaling=0.0) const
Definition: keys.cpp:498
long Encrypt(Ctxt &ciphertxt, const NTL::ZZX &plaintxt, long ptxtSpace, bool highNoise) const
Definition: keys.cpp:354
Definition: apiAttributes.h:21
double RLWE(DoubleCRT &c0, DoubleCRT &c1, const DoubleCRT &s, long p, NTL::ZZ *prgSeed=nullptr)
Definition: keys.cpp:66
void setKSStrategy(long dim, int val)
set KS strategy for dimension dim dim == -1 is Frobenius
Definition: keys.cpp:331
void Decrypt(NTL::ZZX &plaintxt, const Ctxt &ciphertxt) const
Definition: keys.cpp:985
friend void ::helib::readSecKeyBinary(std::istream &str, SecKey &sk)
const KeySwitch & getNextKSWmatrix(long fromXPower, long fromID=0) const
Get the next matrix to use for multi-hop automorphism See Section 3.2.2 in the design document.
Definition: keys.cpp:306
long skEncrypt(Ctxt &ctxt, const NTL::ZZX &ptxt, long ptxtSpace, long skIdx) const
Symmetric encryption using the secret key.
Definition: keys.cpp:1132
long Encrypt(Ctxt &ciphertxt, const NTL::ZZX &plaintxt, long ptxtSpace=0) const override
Definition: keys.cpp:1245
PubKey()
This constructor thorws run-time error if activeContext=nullptr.
Definition: keys.cpp:81
double getSKeyBound(long keyID=0) const
The size of the secret key.
Definition: keys.cpp:276
friend std::istream & operator>>(std::istream &str, PubKey &pk)
Definition: keys.cpp:671
void readSecKeyBinary(std::istream &str, SecKey &sk)
Definition: keys.cpp:1333
const KeySwitch & getKeySWmatrix(const SKHandle &from, long toID=0) const
Find a key-switching matrix by its indexes. If no such matrix exists it returns a dummy matrix with t...
Definition: keys.cpp:170
double securityLevel(int hwt=0) const
An estimate for the security-level. This has a lower bound of 0.
Definition: Context.h:495
long ImportSecKey(const DoubleCRT &sKey, double bound, long ptxtSpace=0, long maxDegKswitch=3)
Definition: keys.cpp:831