Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 367 for decrypto (0.29 sec)

  1. cmd/object-multipart-handlers.go

    		}
    	}
    
    	encMetadata := map[string]string{}
    
    	if crypto.Requested(r.Header) {
    		if crypto.SSECopy.IsRequested(r.Header) {
    			writeErrorResponse(ctx, w, toAPIError(ctx, errInvalidEncryptionParameters), r.URL)
    			return
    		}
    
    		if crypto.SSEC.IsRequested(r.Header) && crypto.S3.IsRequested(r.Header) {
    			writeErrorResponse(ctx, w, toAPIError(ctx, crypto.ErrIncompatibleEncryptionMethod), r.URL)
    			return
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/aes_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package aes
    
    import (
    	"bytes"
    	"context"
    	"crypto/aes"
    	"crypto/cipher"
    	"crypto/rand"
    	"encoding/binary"
    	"encoding/hex"
    	"fmt"
    	"io"
    	"math"
    	"reflect"
    	"sync"
    	"sync/atomic"
    	"testing"
    
    	"k8s.io/apiserver/pkg/storage/value"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  3. 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)
  4. src/go/build/deps_test.go

    	< crypto/subtle
    	< crypto/internal/alias
    	< crypto/cipher;
    
    	crypto/cipher,
    	crypto/internal/boring/bcache
    	< crypto/internal/boring
    	< crypto/boring;
    
    	crypto/internal/alias
    	< crypto/internal/randutil
    	< crypto/internal/nistec/fiat
    	< crypto/internal/nistec
    	< crypto/internal/edwards25519/field
    	< crypto/internal/edwards25519;
    
    	crypto/boring
    	< crypto/aes, crypto/des, crypto/hmac, crypto/md5, crypto/rc4,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. src/crypto/tls/auth.go

    package tls
    
    import (
    	"bytes"
    	"crypto"
    	"crypto/ecdsa"
    	"crypto/ed25519"
    	"crypto/elliptic"
    	"crypto/rsa"
    	"errors"
    	"fmt"
    	"hash"
    	"io"
    )
    
    // verifyHandshakeSignature verifies a signature against pre-hashed
    // (if required) handshake contents.
    func verifyHandshakeSignature(sigType uint8, pubkey crypto.PublicKey, hashFunc crypto.Hash, signed, sig []byte) error {
    	switch sigType {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. api/go1.8.txt

    pkg crypto/tls, const PKCS1WithSHA256 = 1025
    pkg crypto/tls, const PKCS1WithSHA256 SignatureScheme
    pkg crypto/tls, const PKCS1WithSHA384 = 1281
    pkg crypto/tls, const PKCS1WithSHA384 SignatureScheme
    pkg crypto/tls, const PKCS1WithSHA512 = 1537
    pkg crypto/tls, const PKCS1WithSHA512 SignatureScheme
    pkg crypto/tls, const PSSWithSHA256 = 2052
    pkg crypto/tls, const PSSWithSHA256 SignatureScheme
    pkg crypto/tls, const PSSWithSHA384 = 2053
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 05:25:57 UTC 2016
    - 16.3K bytes
    - Viewed (0)
  7. api/go1.21.txt

    pkg crypto/tls, const QUICEncryptionLevelHandshake QUICEncryptionLevel #44886
    pkg crypto/tls, const QUICEncryptionLevelInitial = 0 #44886
    pkg crypto/tls, const QUICEncryptionLevelInitial QUICEncryptionLevel #44886
    pkg crypto/tls, const QUICHandshakeDone = 7 #44886
    pkg crypto/tls, const QUICHandshakeDone QUICEventKind #44886
    pkg crypto/tls, const QUICNoEvent = 0 #44886
    pkg crypto/tls, const QUICNoEvent QUICEventKind #44886
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 09:39:17 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  8. src/crypto/ed25519/ed25519.go

    // 8032 private key as the “seed”.
    //
    // Operations involving private keys are implemented using constant-time
    // algorithms.
    package ed25519
    
    import (
    	"bytes"
    	"crypto"
    	"crypto/internal/edwards25519"
    	cryptorand "crypto/rand"
    	"crypto/sha512"
    	"crypto/subtle"
    	"errors"
    	"io"
    	"strconv"
    )
    
    const (
    	// PublicKeySize is the size, in bytes, of public keys as used in this package.
    	PublicKeySize = 32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/copycerts/copycerts.go

    		// when uploading. This can specially happen with external insecure etcd (no certs)
    		if len(encryptedSecret) > 0 {
    			cert, err := cryptoutil.DecryptBytes(encryptedSecret, key)
    			if err != nil {
    				// If any of the decrypt operations fail do not return a partial result,
    				// return an empty result immediately
    				return map[string][]byte{}, err
    			}
    			secretData[secretName] = cert
    		} else {
    			secretData[secretName] = []byte{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 01 00:15:30 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/metrics/metrics.go

    			Subsystem:      subsystem,
    			Name:           "dek_source_cache_size",
    			Help:           "Number of records in data encryption key (DEK) source cache. On a restart, this value is an approximation of the number of decrypt RPC calls the server will make to the KMS plugin.",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"provider_name"},
    	)
    )
    
    var registerMetricsFunc sync.Once
    var hashPool *sync.Pool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 09 22:31:32 UTC 2023
    - 12K bytes
    - Viewed (0)
Back to top