|
|
@ -24,6 +24,7 @@ import (
|
|
|
|
"crypto/rand"
|
|
|
|
"crypto/rand"
|
|
|
|
"crypto/x509"
|
|
|
|
"crypto/x509"
|
|
|
|
"crypto/x509/pkix"
|
|
|
|
"crypto/x509/pkix"
|
|
|
|
|
|
|
|
"encoding/gob"
|
|
|
|
"encoding/json"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"fmt"
|
|
|
|
"math/big"
|
|
|
|
"math/big"
|
|
|
@ -410,6 +411,58 @@ type UnnamedStructFields struct {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func gobStruct() {
|
|
|
|
|
|
|
|
type gobAlias struct {
|
|
|
|
|
|
|
|
Security []map[string]struct {
|
|
|
|
|
|
|
|
List []string
|
|
|
|
|
|
|
|
Pad bool
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
alias := gobAlias{}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
gob.NewEncoder(os.Stdout).Encode(alias)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
alias.Security = make([]map[string]struct {
|
|
|
|
|
|
|
|
List []string
|
|
|
|
|
|
|
|
Pad bool
|
|
|
|
|
|
|
|
}, 0, len([]string{}))
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func gobMap() {
|
|
|
|
|
|
|
|
type gobAlias struct {
|
|
|
|
|
|
|
|
Security map[string]struct {
|
|
|
|
|
|
|
|
List []string
|
|
|
|
|
|
|
|
Pad bool
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
alias := gobAlias{}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
gob.NewEncoder(os.Stdout).Encode(alias)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
alias.Security = make(map[string]struct {
|
|
|
|
|
|
|
|
List []string
|
|
|
|
|
|
|
|
Pad bool
|
|
|
|
|
|
|
|
}, len([]string{}))
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func gobChan() {
|
|
|
|
|
|
|
|
type gobAlias struct {
|
|
|
|
|
|
|
|
Security chan struct {
|
|
|
|
|
|
|
|
List []string
|
|
|
|
|
|
|
|
Pad bool
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
alias := gobAlias{}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
gob.NewEncoder(os.Stdout).Encode(alias)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
alias.Security = make(chan struct {
|
|
|
|
|
|
|
|
List []string
|
|
|
|
|
|
|
|
Pad bool
|
|
|
|
|
|
|
|
}, len([]string{}))
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
-- importedpkg/imported.go --
|
|
|
|
-- importedpkg/imported.go --
|
|
|
|
package importedpkg
|
|
|
|
package importedpkg
|
|
|
|
|
|
|
|
|
|
|
|