mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-03 11:57:37 +03:00
Add certificate store
This commit is contained in:
parent
297dd632e8
commit
ee6d291011
30 changed files with 4786 additions and 32 deletions
36
option/certificate.go
Normal file
36
option/certificate.go
Normal file
|
@ -0,0 +1,36 @@
|
|||
package option
|
||||
|
||||
import (
|
||||
C "github.com/sagernet/sing-box/constant"
|
||||
"github.com/sagernet/sing/common/json"
|
||||
"github.com/sagernet/sing/common/json/badoption"
|
||||
)
|
||||
|
||||
type _CertificateOptions struct {
|
||||
Store string `json:"store,omitempty"`
|
||||
Certificate badoption.Listable[string] `json:"certificate,omitempty"`
|
||||
CertificatePath badoption.Listable[string] `json:"certificate_path,omitempty"`
|
||||
CertificateDirectoryPath badoption.Listable[string] `json:"certificate_directory_path,omitempty"`
|
||||
}
|
||||
|
||||
type CertificateOptions _CertificateOptions
|
||||
|
||||
func (o CertificateOptions) MarshalJSON() ([]byte, error) {
|
||||
switch o.Store {
|
||||
case C.CertificateStoreSystem:
|
||||
o.Store = ""
|
||||
}
|
||||
return json.Marshal((*_CertificateOptions)(&o))
|
||||
}
|
||||
|
||||
func (o *CertificateOptions) UnmarshalJSON(data []byte) error {
|
||||
err := json.Unmarshal(data, (*_CertificateOptions)(o))
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
switch o.Store {
|
||||
case C.CertificateStoreSystem, "":
|
||||
o.Store = C.CertificateStoreSystem
|
||||
}
|
||||
return nil
|
||||
}
|
|
@ -14,6 +14,7 @@ type _Options struct {
|
|||
Log *LogOptions `json:"log,omitempty"`
|
||||
DNS *DNSOptions `json:"dns,omitempty"`
|
||||
NTP *NTPOptions `json:"ntp,omitempty"`
|
||||
Certificate *CertificateOptions `json:"certificate,omitempty"`
|
||||
Endpoints []Endpoint `json:"endpoints,omitempty"`
|
||||
Inbounds []Inbound `json:"inbounds,omitempty"`
|
||||
Outbounds []Outbound `json:"outbounds,omitempty"`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue