Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use api functions with encryption key and type #458

Merged
merged 1 commit into from
Aug 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 27 additions & 28 deletions inst/tinytest/test_tiledbarray.R
Original file line number Diff line number Diff line change
Expand Up @@ -945,34 +945,33 @@ if (tiledb_version(TRUE) >= "2.8.0" && tiledb_version(TRUE) < "2.10.0") exit_fil
## FYI: 101 tests here
## test encrypted arrays via high-level accessor
## (lower-level tests in test_densearray and test_arrayschema)
if (tiledb_version(TRUE) > "2.5.0") {
tmp <- tempfile()
dir.create(tmp)
encryption_key <- "0123456789abcdeF0123456789abcdeF"

## create 4x4 with single attribute
dom <- tiledb_domain(dims = c(tiledb_dim("rows", c(1L, 4L), 4L, "INT32"),
tiledb_dim("cols", c(1L, 4L), 4L, "INT32")))
schema <- tiledb_array_schema(dom, attrs=c(tiledb_attr("a", type = "INT32")), sparse = TRUE)
invisible( tiledb_array_create(tmp, schema, encryption_key) )

## write
I <- c(1, 2, 2)
J <- c(1, 4, 3)
data <- c(1L, 2L, 3L)
A <- tiledb_array(uri = tmp, encryption_key = encryption_key)
A[I, J] <- data

## read
A <- tiledb_array(uri = tmp, as.data.frame=TRUE, encryption_key = encryption_key)
chk <- A[1:2, 2:4]
expect_equal(nrow(chk), 2)
expect_equal(chk[,"rows"], c(2L,2L))
expect_equal(chk[,"cols"], c(3L,4L))
expect_equal(chk[,"a"], c(3L,2L))

unlink(tmp, recursive = TRUE)
}
tmp <- tempfile()
dir.create(tmp)
encryption_key <- "0123456789abcdeF0123456789abcdeF"

## create 4x4 with single attribute
dom <- tiledb_domain(dims = c(tiledb_dim("rows", c(1L, 4L), 4L, "INT32"),
tiledb_dim("cols", c(1L, 4L), 4L, "INT32")))
schema <- tiledb_array_schema(dom, attrs=c(tiledb_attr("a", type = "INT32")), sparse = TRUE)
invisible( tiledb_array_create(tmp, schema, encryption_key) )

## write
I <- c(1, 2, 2)
J <- c(1, 4, 3)
data <- c(1L, 2L, 3L)
A <- tiledb_array(uri = tmp, encryption_key = encryption_key)
A[I, J] <- data

## read
A <- tiledb_array(uri = tmp, as.data.frame=TRUE, encryption_key = encryption_key)
chk <- A[1:2, 2:4]
expect_equal(nrow(chk), 2)
expect_equal(chk[,"rows"], c(2L,2L))
expect_equal(chk[,"cols"], c(3L,4L))
expect_equal(chk[,"a"], c(3L,2L))

unlink(tmp, recursive = TRUE)


## FYI: 105 tests here
## non-empty domain, var and plain
Expand Down
31 changes: 8 additions & 23 deletions src/libtiledb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1626,11 +1626,8 @@ XPtr<tiledb::ArraySchema> libtiledb_array_schema_load_with_key(XPtr<tiledb::Cont
std::string uri,
std::string key) {
check_xptr_tag<tiledb::Context>(ctx);
XPtr<tiledb::Config> cfg = libtiledb_ctx_config(ctx);
(*cfg)["sm.encryption_type"] = "AES_256_GCM";
(*cfg)["sm.encryption_key"] = key;
XPtr<tiledb::Context> newctx = libtiledb_ctx(cfg);
auto p = new tiledb::ArraySchema(*newctx.get(), uri);
auto p = new tiledb::ArraySchema(*ctx.get(), uri, TILEDB_AES_256_GCM,
key.data(), (uint32_t) key.size());
return make_xptr<tiledb::ArraySchema>(p);
}

Expand Down Expand Up @@ -1965,13 +1962,9 @@ XPtr<tiledb::Array> libtiledb_array_open_with_key(XPtr<tiledb::Context> ctx, std
std::string enc_key) {
check_xptr_tag<tiledb::Context>(ctx);
auto query_type = _string_to_tiledb_query_type(type);

XPtr<tiledb::Config> cfg = libtiledb_ctx_config(ctx);
(*cfg)["sm.encryption_type"] = "AES_256_GCM";
(*cfg)["sm.encryption_key"] = enc_key;
XPtr<tiledb::Context> newctx = libtiledb_ctx(cfg);
auto p = new tiledb::Array(*newctx.get(), uri, query_type);
return make_xptr<tiledb::Array>(p);
return make_xptr<tiledb::Array>(new tiledb::Array(tiledb::Array(*ctx.get(), uri, query_type,
TILEDB_AES_256_GCM, enc_key.data(),
(uint32_t)enc_key.size())));
}

// [[Rcpp::export]]
Expand All @@ -1981,17 +1974,9 @@ XPtr<tiledb::Array> libtiledb_array_open_at_with_key(XPtr<tiledb::Context> ctx,
check_xptr_tag<tiledb::Context>(ctx);
auto query_type = _string_to_tiledb_query_type(type);
uint64_t ts_ms = static_cast<uint64_t>(std::round(tstamp.getFractionalTimestamp() * 1000));
XPtr<tiledb::Config> cfg = libtiledb_ctx_config(ctx);
(*cfg)["sm.encryption_type"] = "AES_256_GCM";
(*cfg)["sm.encryption_key"] = enc_key;
XPtr<tiledb::Context> newctx = libtiledb_ctx(cfg);
#if TILEDB_VERSION >= TileDB_Version(2,3,0)
auto p = new tiledb::Array(*newctx.get(), uri, query_type);
p->set_open_timestamp_start(ts_ms);
#else
auto p = new tiledb::Array(*ctx.get(), uri, query_type, ts_ms);
#endif
return make_xptr<tiledb::Array>(p);
return make_xptr<tiledb::Array>(new tiledb::Array(*ctx.get(), uri, query_type,
TILEDB_AES_256_GCM, enc_key.data(),
(uint32_t)enc_key.size(), ts_ms));
}

// [[Rcpp::export]]
Expand Down