DNS服务支持密钥管理

This commit is contained in:
刘祥超
2021-07-25 09:43:47 +08:00
parent 2b1483f857
commit f1da942189
6 changed files with 1485 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
// NS密钥
message NSKey {
int64 id =1;
bool isOn = 2;
string name = 3;
string algo = 4;
string secret = 5;
string secretType = 6;
}