Home
last modified time | relevance | path

Searched defs:KeyPair (Results 1 – 25 of 1175) sorted by relevance

12345678910>>...47

/dports/converters/wkhtmltopdf/qt-5db36ec/src/gui/kernel/
H A Dqt_cocoa_helpers_mac.mm539 struct KeyPair struct
545 bool operator==(const KeyPair &entry, QChar qchar) argument
747 static bool mustUseCocoaKeyEvent()
851 QPointF flipPoint(const NSPoint &p)
856 NSPoint flipPoint(const QPoint &p)
861 NSPoint flipPoint(const QPointF &p)
1038 QWidget *qt_mac_getTargetForMouseEvent(
1547 CGFloat qt_mac_get_scalefactor()
1715 void qt_mac_post_retranslateAppMenu()
1791 void qt_mac_display(QWidget *widget)
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/pkg/certificate/
H A Dkeypair.go25 type KeyPair struct { struct
26 KeyPEM []byte
27 CertPEM []byte
29 KeyFile string
30 CertFile string
42 func (kp *KeyPair) LoadCertificate() error {
59 func (kp *KeyPair) SaveCertificate() error {
63 func (kp *KeyPair) CreateSelfSigned(domain string, org []string, size int) error {
75 func (kp *KeyPair) CreateRootCA(domain string, org []string, size int) error {
87 …c (kp *KeyPair) CreateServerCertificate(domain string, org []string, size int, ca *KeyPair) error {
[all …]
/dports/net/bosh-bootloader/bosh-bootloader-7.2.12/vendor/github.com/genevieve/leftovers/aws/ec2/
H A Dkey_pair.go10 type KeyPair struct { struct
11 client keyPairsClient
12 name *string
13 identifier string
14 rtype string
26 func (k KeyPair) Delete() error {
42 func (k KeyPair) Name() string {
46 func (k KeyPair) Type() string {
/dports/security/lego/lego-4.5.3/vendor/github.com/aliyun/alibaba-cloud-sdk-go/services/ecs/
H A Dstruct_key_pair.go19 type KeyPair struct { struct
20 KeyPairName string `json:"KeyPairName" xml:"KeyPairName"`
21 KeyPairFingerPrint string `json:"KeyPairFingerPrint" xml:"KeyPairFingerPrint"`
22 CreationTime string `json:"CreationTime" xml:"CreationTime"`
23 ResourceGroupId string `json:"ResourceGroupId" xml:"ResourceGroupId"`
24 Tags TagsInDescribeKeyPairs `json:"Tags" xml:"Tags"`
/dports/sysutils/helmfile/vault-f6547fa8e820/vendor/github.com/hashicorp/consul-template/dependency/
H A Dkv_list.go27 type KeyPair struct { struct
28 Path string
29 Key string
30 Value string
33 CreateIndex uint64
34 ModifyIndex uint64
35 LockIndex uint64
36 Flags uint64
37 Session string
/dports/misc/concourse/vault-bdd38fca2cff/vendor/github.com/hashicorp/consul-template/dependency/
H A Dkv_list.go27 type KeyPair struct { struct
28 Path string
29 Key string
30 Value string
33 CreateIndex uint64
34 ModifyIndex uint64
35 LockIndex uint64
36 Flags uint64
37 Session string
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/hashicorp/vault/vendor/github.com/hashicorp/consul-template/dependency/
H A Dkv_list.go27 type KeyPair struct { struct
28 Path string
29 Key string
30 Value string
33 CreateIndex uint64
34 ModifyIndex uint64
35 LockIndex uint64
36 Flags uint64
37 Session string
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/nomad/vendor/github.com/hashicorp/consul-template/dependency/
H A Dkv_list.go27 type KeyPair struct { struct
28 Path string
29 Key string
30 Value string
33 CreateIndex uint64
34 ModifyIndex uint64
35 LockIndex uint64
36 Flags uint64
37 Session string
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/consul-template/dependency/
H A Dkv_list.go27 type KeyPair struct { struct
28 Path string
29 Key string
30 Value string
33 CreateIndex uint64
34 ModifyIndex uint64
35 LockIndex uint64
36 Flags uint64
37 Session string
/dports/sysutils/nomad/nomad-1.1.0/vendor/github.com/hashicorp/consul-template/dependency/
H A Dkv_list.go27 type KeyPair struct { struct
28 Path string
29 Key string
30 Value string
33 CreateIndex uint64
34 ModifyIndex uint64
35 LockIndex uint64
36 Flags uint64
37 Session string
/dports/security/vault/vault-1.8.2/vendor/github.com/aliyun/alibaba-cloud-sdk-go/services/ecs/
H A Dstruct_key_pair.go19 type KeyPair struct { struct
20 KeyPairName string `json:"KeyPairName" xml:"KeyPairName"`
21 KeyPairFingerPrint string `json:"KeyPairFingerPrint" xml:"KeyPairFingerPrint"`
22 ResourceGroupId string `json:"ResourceGroupId" xml:"ResourceGroupId"`
23 Tags TagsInDescribeKeyPairs `json:"Tags" xml:"Tags"`
/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/aliyun/alibaba-cloud-sdk-go/services/ecs/
H A Dstruct_key_pair.go19 type KeyPair struct { struct
20 KeyPairName string `json:"KeyPairName" xml:"KeyPairName"`
21 KeyPairFingerPrint string `json:"KeyPairFingerPrint" xml:"KeyPairFingerPrint"`
22 ResourceGroupId string `json:"ResourceGroupId" xml:"ResourceGroupId"`
23 Tags TagsInDescribeKeyPairs `json:"Tags" xml:"Tags"`
/dports/sysutils/vector/vector-0.10.0/cargo-crates/minisign-0.5.19/src/
H A Dkeypair.rs14 pub struct KeyPair { struct
19 impl KeyPair { impl
67 let KeyPair { pk, mut sk } = Self::generate_unencrypted_keypair()?; in generate_encrypted_keypair() localVariable
117 let KeyPair { pk, sk } = Self::generate_encrypted_keypair(password)?; in generate_and_write_encrypted_keypair() localVariable
151 let KeyPair { pk, sk } = Self::generate_unencrypted_keypair()?; in generate_and_write_unencrypted_keypair() localVariable
H A Dtests.rs19 let KeyPair { pk, .. } = KeyPair::generate_unencrypted_keypair().unwrap(); in pk_key_struct_conversion() localVariable
27 let KeyPair { sk, .. } = KeyPair::generate_unencrypted_keypair().unwrap(); in sk_key_struct_conversion() localVariable
36 let KeyPair { mut sk, .. } = KeyPair::generate_unencrypted_keypair().unwrap(); in xor_keynum() localVariable
50 let KeyPair { mut sk, .. } = KeyPair::generate_unencrypted_keypair().unwrap(); in sk_checksum() localVariable
73 let KeyPair { pk, sk } = KeyPair::generate_unencrypted_keypair().unwrap(); in signature() localVariable
86 let KeyPair { pk, sk } = KeyPair::generate_unencrypted_keypair().unwrap(); in signature_prehashed() localVariable
99 let KeyPair { pk, sk } = KeyPair::generate_unencrypted_keypair().unwrap(); in signature_bones() localVariable
/dports/security/lego/lego-4.5.3/vendor/github.com/aliyun/alibaba-cloud-sdk-go/services/ens/
H A Dstruct_key_pair.go19 type KeyPair struct { struct
20 CreationTime string `json:"CreationTime" xml:"CreationTime"`
21 KeyPairFingerPrint string `json:"KeyPairFingerPrint" xml:"KeyPairFingerPrint"`
22 KeyPairName string `json:"KeyPairName" xml:"KeyPairName"`
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/machine/machine-7b7a141da844/libmachine/ssh/
H A Dkeys.go26 type KeyPair struct { struct
27 PrivateKey []byte
28 PublicKey []byte
57 func (kp *KeyPair) WriteToFile(privateKeyPath string, publicKeyPath string) error {
96 func (kp *KeyPair) Fingerprint() string {
/dports/sysutils/docker-machine/machine-0.16.2/libmachine/ssh/
H A Dkeys.go26 type KeyPair struct { struct
27 PrivateKey []byte
28 PublicKey []byte
57 func (kp *KeyPair) WriteToFile(privateKeyPath string, publicKeyPath string) error {
96 func (kp *KeyPair) Fingerprint() string {
/dports/net-p2p/libswift/libswift-dc0cbcc/
H A Dlivesig.h92 struct KeyPair { struct
94 KeyPair() { // keep compiler happy in KeyPair() argument
98 KeyPair(popt_live_sig_alg_t alg,EVP_PKEY *evp) { in KeyPair() argument
102 ~KeyPair() { in ~KeyPair() argument
136 static KeyPair *ReadPrivateKey(std::string keypairfilename); argument
165 KeyPair *GetPublicKeyPair() const; argument
/dports/security/lego/lego-4.5.3/vendor/github.com/gophercloud/gophercloud/openstack/compute/v2/extensions/keypairs/
H A Dresults.go10 type KeyPair struct { struct
13 Name string `json:"name"`
17 Fingerprint string `json:"fingerprint"`
21 PublicKey string `json:"public_key"`
26 PrivateKey string `json:"private_key"`
29 UserID string `json:"user_id"`
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/github.com/gophercloud/gophercloud/openstack/compute/v2/extensions/keypairs/
H A Dresults.go10 type KeyPair struct { struct
13 Name string `json:"name"`
17 Fingerprint string `json:"fingerprint"`
21 PublicKey string `json:"public_key"`
26 PrivateKey string `json:"private_key"`
29 UserID string `json:"user_id"`
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/github.com/hashicorp/consul/vendor/github.com/gophercloud/gophercloud/openstack/compute/v2/extensions/keypairs/
H A Dresults.go10 type KeyPair struct { struct
13 Name string `json:"name"`
17 Fingerprint string `json:"fingerprint"`
21 PublicKey string `json:"public_key"`
26 PrivateKey string `json:"private_key"`
29 UserID string `json:"user_id"`
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/gophercloud/gophercloud/openstack/compute/v2/extensions/keypairs/
H A Dresults.go10 type KeyPair struct { struct
13 Name string `json:"name"`
17 Fingerprint string `json:"fingerprint"`
21 PublicKey string `json:"public_key"`
26 PrivateKey string `json:"private_key"`
29 UserID string `json:"user_id"`
/dports/www/fabio/fabio-1.5.14/vendor/github.com/hashicorp/consul/consul-1.4.2/vendor/github.com/gophercloud/gophercloud/openstack/compute/v2/extensions/keypairs/
H A Dresults.go10 type KeyPair struct { struct
13 Name string `json:"name"`
17 Fingerprint string `json:"fingerprint"`
21 PublicKey string `json:"public_key"`
26 PrivateKey string `json:"private_key"`
29 UserID string `json:"user_id"`
/dports/security/vault/vault-1.8.2/vendor/github.com/gophercloud/gophercloud/openstack/compute/v2/extensions/keypairs/
H A Dresults.go10 type KeyPair struct { struct
13 Name string `json:"name"`
17 Fingerprint string `json:"fingerprint"`
21 PublicKey string `json:"public_key"`
26 PrivateKey string `json:"private_key"`
29 UserID string `json:"user_id"`
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/gophercloud/gophercloud/openstack/compute/v2/extensions/keypairs/
H A Dresults.go10 type KeyPair struct { struct
13 Name string `json:"name"`
17 Fingerprint string `json:"fingerprint"`
21 PublicKey string `json:"public_key"`
26 PrivateKey string `json:"private_key"`
29 UserID string `json:"user_id"`

12345678910>>...47