Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 892 for cryptomb (0.22 sec)

  1. security/pkg/nodeagent/sds/sdsservice.go

    					},
    				},
    			},
    		}
    	} else {
    		switch pkpConf.GetProvider().(type) {
    		case *mesh.PrivateKeyProvider_Cryptomb:
    			crypto := pkpConf.GetCryptomb()
    			msg := protoconv.MessageToAny(&cryptomb.CryptoMbPrivateKeyMethodConfig{
    				PollDelay: durationpb.New(time.Duration(crypto.GetPollDelay().Nanos)),
    				PrivateKey: &core.DataSource{
    					Specifier: &core.DataSource_InlineBytes{
    						InlineBytes: s.PrivateKey,
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/sds/sdsservice_test.go

    // limitations under the License.
    package sds
    
    import (
    	"context"
    	"fmt"
    	"net"
    	"os"
    	"strings"
    	"testing"
    
    	cryptomb "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/private_key_providers/cryptomb/v3alpha"
    	tlsv3 "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/tls/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 20:12:58 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. pilot/pkg/xds/sds.go

    // limitations under the License.
    
    package xds
    
    import (
    	"crypto/x509"
    	"encoding/pem"
    	"fmt"
    	"strconv"
    	"strings"
    	"time"
    
    	xxhashv2 "github.com/cespare/xxhash/v2"
    	cryptomb "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/private_key_providers/cryptomb/v3alpha"
    	qat "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/private_key_providers/qat/v3alpha"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. pkg/config/validation/agent/validation_test.go

    				},
    			),
    			isValid: false,
    		},
    		{
    			name: "private key provider with cryptomb without poll_delay",
    			in: modify(valid,
    				func(c *meshconfig.ProxyConfig) {
    					c.PrivateKeyProvider = &meshconfig.PrivateKeyProvider{
    						Provider: &meshconfig.PrivateKeyProvider_Cryptomb{
    							Cryptomb: &meshconfig.PrivateKeyProvider_CryptoMb{},
    						},
    					}
    				},
    			),
    			isValid: false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  5. pkg/config/validation/agent/validation.go

    	}
    
    	switch pkpConf.GetProvider().(type) {
    	case *meshconfig.PrivateKeyProvider_Cryptomb:
    		cryptomb := pkpConf.GetCryptomb()
    		if cryptomb == nil {
    			errs = multierror.Append(errs, errors.New("cryptomb configuration is required"))
    		} else {
    			pollDelay := cryptomb.GetPollDelay()
    			if pollDelay == nil {
    				errs = multierror.Append(errs, errors.New("pollDelay is required"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  6. pilot/pkg/xds/sds_test.go

    			ClusterID: constants.DefaultClusterName,
    			ProxyConfig: &model.NodeMetaProxyConfig{
    				PrivateKeyProvider: &meshconfig.PrivateKeyProvider{
    					Provider: &meshconfig.PrivateKeyProvider_Cryptomb{
    						Cryptomb: &meshconfig.PrivateKeyProvider_CryptoMb{
    							PollDelay: &durationpb.Duration{
    								Seconds: 0,
    								Nanos:   10000,
    							},
    						},
    					},
    				},
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  7. Makefile.core.mk

    # (proto) Istio API non-CRDs, MeshConfig and ProxyConfig
    # (proto) Envoy TLS proto for SDS
    # (proto) Envoy Wasm filters for wasm xDS proxy
    # (proto) xDS discovery service for xDS proxy
    # (proto) SDS secret and contrib QAT and cryptomb
    .PHONY: check-agent-deps
    check-agent-deps:
    	@go list -f '{{ join .Deps "\n" }}' -tags=agent \
    			./pilot/cmd/pilot-agent/... \
    			./pkg/istio-agent/... | sort | uniq |\
    		grep -Pv '^k8s.io/(utils|klog)/' |\
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/network/connection_balance/dlb/v3alpha"
    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/private_key_providers/cryptomb/v3alpha"
    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/private_key_providers/qat/v3alpha"
    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/regex_engines/hyperscan/v3alpha"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. src/crypto/crypto.go

    }
    
    const (
    	MD4         Hash = 1 + iota // import golang.org/x/crypto/md4
    	MD5                         // import crypto/md5
    	SHA1                        // import crypto/sha1
    	SHA224                      // import crypto/sha256
    	SHA256                      // import crypto/sha256
    	SHA384                      // import crypto/sha512
    	SHA512                      // import crypto/sha512
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. security/pkg/pki/util/crypto.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package util
    
    import (
    	"bytes"
    	"crypto"
    	"crypto/ecdsa"
    	"crypto/elliptic"
    	"crypto/rsa"
    	"crypto/x509"
    	"encoding/pem"
    	"fmt"
    	"reflect"
    	"strings"
    )
    
    const (
    	blockTypeECPrivateKey    = "EC PRIVATE KEY"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top