Skip to content

Commit 0ecec92

Browse files
Made GetEvalAutomorphismKeyMapPtr() public (#952)
Co-authored-by: Dmitriy Suponitskiy <dsuponitskiy@dualitytech.com>
1 parent aea716d commit 0ecec92

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/pke/include/cryptocontext.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -238,10 +238,6 @@ class CryptoContextImpl : public Serializable {
238238
CryptoContextImpl<Element>::GetUniqueValues(existingIndices, indices);
239239
}
240240
/**
241-
* Get automorphism keys for a specific secret key tag
242-
*/
243-
static std::shared_ptr<std::map<usint, EvalKey<Element>>> GetEvalAutomorphismKeyMapPtr(const std::string& keyID);
244-
/**
245241
* @brief Get automorphism keys for a specific secret key tag and an array of specific indices
246242
* @param keyID - secret key tag
247243
* @param indexList - array of specific indices to retrieve key for
@@ -1069,6 +1065,10 @@ class CryptoContextImpl : public Serializable {
10691065
* Get a map of automorphism keys for all secret keys
10701066
*/
10711067
static std::map<std::string, std::shared_ptr<std::map<usint, EvalKey<Element>>>>& GetAllEvalAutomorphismKeys();
1068+
/**
1069+
* Get automorphism keys for a specific secret key tag
1070+
*/
1071+
static std::shared_ptr<std::map<usint, EvalKey<Element>>> GetEvalAutomorphismKeyMapPtr(const std::string& keyID);
10721072
/**
10731073
* Get automorphism keys for a specific secret key tag
10741074
*/

0 commit comments

Comments
 (0)