Skip to content

Commit 4cb62b4

Browse files
author
Nicklas Warming Jacobsen
committed
Rename zk to zerokms
1 parent 8e263b9 commit 4cb62b4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/encrypted_table/mod.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,10 @@ impl EncryptedTable<Headless> {
7878
.cts_config(&cts_config)
7979
.build_with_client_key()?;
8080

81-
Self::init_headless_with_zk_config(zerokms_config).await
81+
Self::init_headless_with_zerokms_config(zerokms_config).await
8282
}
8383

84-
pub async fn init_headless_with_zk_config(
84+
pub async fn init_headless_with_zerokms_config(
8585
zerokms_config: ZeroKMSConfig<ClientKey>,
8686
) -> Result<Self, InitError> {
8787
info!("Initializing...");
@@ -419,12 +419,12 @@ impl EncryptedTable<Dynamo> {
419419
})
420420
}
421421

422-
pub async fn init_with_zk_config(
422+
pub async fn init_with_zerokms_config(
423423
zerokms_config: ZeroKMSConfig<ClientKey>,
424424
db: aws_sdk_dynamodb::Client,
425425
table_name: impl Into<String>,
426426
) -> Result<Self, InitError> {
427-
let table = EncryptedTable::init_headless_with_zk_config(zerokms_config).await?;
427+
let table = EncryptedTable::init_headless_with_zerokms_config(zerokms_config).await?;
428428

429429
Ok(Self {
430430
db: Dynamo {

0 commit comments

Comments
 (0)