From af9149c61dc08e15e329991e0ab8cf35a01422b7 Mon Sep 17 00:00:00 2001 From: Dar9586 Date: Fri, 12 Apr 2024 17:58:26 +0000 Subject: [PATCH] Update encryptor_decryptor.rs Fix typo --- seal_fhe/src/encryptor_decryptor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seal_fhe/src/encryptor_decryptor.rs b/seal_fhe/src/encryptor_decryptor.rs index e2f3861d1..1b23959d0 100644 --- a/seal_fhe/src/encryptor_decryptor.rs +++ b/seal_fhe/src/encryptor_decryptor.rs @@ -57,7 +57,7 @@ impl core::fmt::Debug for SymmetricComponents { * Encrypts Plaintext objects into Ciphertext objects. * * Constructing an Encryptor requires a SEALContext with valid encryption parameters, the public - * key and/or the secret key. If an Encrytor is given a secret key, it supports symmetric-key + * key and/or the secret key. If an Encryptor is given a secret key, it supports symmetric-key * encryption. If an Encryptor is given a public key, it supports asymmetric-key encryption. * * Overloads