feat: migrate secret management to datastore proto and tink

This commit is contained in:
2026-06-02 18:15:22 +02:00
parent 2be68d38a5
commit e8b3f898e8
16 changed files with 328 additions and 128 deletions
+12
View File
@@ -0,0 +1,12 @@
syntax = "proto3";
option java_package = "com.bitcointxoko.gudariwallet.security";
option java_multiple_files = true;
option java_outer_classname = "CredentialsProto";
message Credentials {
string base_url = 1;
string invoice_key = 2;
string admin_key = 3;
bool is_onboarded = 4;
}