DNS服务支持密钥管理

This commit is contained in:
GoEdgeLab
2021-07-25 09:43:47 +08:00
parent 31308b5b56
commit 11e6e128b0
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;
}