Skip to content

Commit

Permalink
refactor(encryption): change the default value of encryption_method f…
Browse files Browse the repository at this point in the history
…rom AES128 to AES256 (apache#2005)
  • Loading branch information
Samunroyu authored May 11, 2024
1 parent c4d4a7e commit 10ac661
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/env.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ DSN_DEFINE_bool(pegasus.server,

DSN_DEFINE_string(pegasus.server,
server_key,
"0123456789ABCDEF0123456789ABCDEF",
"0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF0123456789ABCDEF",
"The encrypted server key to use in the filesystem.");

DSN_DEFINE_string(pegasus.server,
encryption_method,
"AES128CTR",
"AES256CTR",
"The encryption method to use in the filesystem. Now "
"supports AES128CTR, AES192CTR, AES256CTR and SM4CTR.");

Expand Down

0 comments on commit 10ac661

Please sign in to comment.