Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 243 for Encryptions (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/etcd_test.go

    				DefaultWatchCacheSize:                   100,
    				EtcdServersOverrides:                    []string{"/events#http://127.0.0.1:4002"},
    			},
    			expectErr: "--encryption-provider-config-automatic-reload must be set with --encryption-provider-config",
    		},
    		{
    			name: "test when EtcdOptions is valid",
    			testOptions: &EtcdOptions{
    				StorageConfig: storagebackend.Config{
    					Type:   "etcd3",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/value/metrics_test.go

    				# TYPE apiserver_storage_transformation_operations_total counter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 22:44:02 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  3. docs/site-replication/run-sse-kms-object-replication.sh

    src_obj1_keyid=$(echo "${stat_out1}" | jq '.metadata."X-Amz-Server-Side-Encryption-Aws-Kms-Key-Id"')
    echo "Stat minio1/test-bucket/defpartsize"
    ./mc stat minio1/test-bucket/defpartsize --insecure --json
    stat_out2=$(./mc stat minio1/test-bucket/defpartsize --insecure --json)
    src_obj2_algo=$(echo "${stat_out2}" | jq '.metadata."X-Amz-Server-Side-Encryption"')
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/metrics/metrics_test.go

    	registry := testMetricsRegistry(t)
    
    	expectedValue := `
    	# HELP apiserver_encryption_config_controller_automatic_reload_failures_total [ALPHA] (Deprecated since 1.30.0) Total number of failed automatic reloads of encryption configuration split by apiserver identity.
        # TYPE apiserver_encryption_config_controller_automatic_reload_failures_total counter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 05:47:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/v2/api.proto

    // EncryptedObject is the representation of data stored in etcd after envelope encryption.
    message EncryptedObject {
      // EncryptedData is the encrypted data.
      bytes encryptedData = 1;
    
      // KeyID is the KMS key ID used for encryption operations.
      // keyID must satisfy the following constraints:
      // 1. The keyID is not empty.
      // 2. The size of keyID is less than 1 kB.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 18:43:30 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. internal/crypto/doc.go

    // for implementing Server-Side-Encryption (SSE-S3) and Server-Side-Encryption
    // with customer provided keys (SSE-C).
    //
    // All objects are encrypted with an unique and randomly generated 'ObjectKey'.
    // The ObjectKey itself is never stored in plaintext. Instead it is only stored
    // in a sealed from. The sealed 'ObjectKey' is created by encrypting the 'ObjectKey'
    // with an unique key-encryption-key. Given the correct key-encryption-key the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Aug 26 19:52:29 UTC 2022
    - 5K bytes
    - Viewed (0)
  7. internal/crypto/sse.go

    	"github.com/minio/sio"
    )
    
    const (
    	// SealAlgorithm is the encryption/sealing algorithm used to derive & seal
    	// the key-encryption-key and to en/decrypt the object data.
    	SealAlgorithm = "DAREv2-HMAC-SHA256"
    
    	// InsecureSealAlgorithm is the legacy encryption/sealing algorithm used
    	// to derive & seal the key-encryption-key and to en/decrypt the object data.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 30 15:26:43 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  8. cmd/handler-utils.go

    var validSSEReplicationHeaders = map[string]string{
    	"X-Minio-Internal-Server-Side-Encryption-Sealed-Key":     "X-Minio-Replication-Server-Side-Encryption-Sealed-Key",
    	"X-Minio-Internal-Server-Side-Encryption-Seal-Algorithm": "X-Minio-Replication-Server-Side-Encryption-Seal-Algorithm",
    	"X-Minio-Internal-Server-Side-Encryption-Iv":             "X-Minio-Replication-Server-Side-Encryption-Iv",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/controller/controller.go

    	filePath string
    
    	// lastLoadedEncryptionConfigHash stores last successfully read encryption config file content.
    	lastLoadedEncryptionConfigHash string
    
    	// queue for processing changes in encryption config file.
    	queue workqueue.TypedRateLimitingInterface[string]
    
    	// dynamicTransformers updates the transformers when encryption config file changes.
    	dynamicTransformers *encryptionconfig.DynamicTransformers
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. src/crypto/x509/pem_decrypt.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package x509
    
    // RFC 1423 describes the encryption of PEM blocks. The algorithm used to
    // generate a key from the password was derived by looking at the OpenSSL
    // implementation.
    
    import (
    	"crypto/aes"
    	"crypto/cipher"
    	"crypto/des"
    	"crypto/md5"
    	"encoding/hex"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top