Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for decryptKey (0.24 sec)

  1. cmd/object-api-datatypes.go

    // It will be decrypted if needed.
    func (o *ObjectInfo) ArchiveInfo(h http.Header) []byte {
    	if len(o.UserDefined) == 0 {
    		return nil
    	}
    	z, ok := o.UserDefined[archiveInfoMetadataKey]
    	if !ok {
    		return nil
    	}
    	data := []byte(z)
    	if v, ok := o.UserDefined[archiveTypeMetadataKey]; ok && v == archiveTypeEnc {
    		decrypted, err := o.metadataDecrypter(h)(archiveTypeEnc, data)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. docs/en/docs/deployment/https.md

    sent with the **HTTP protocol**.
    
    It is a common practice to have **one program/HTTP server** running on the server (the machine, host, etc.) and **managing all the HTTPS parts**: receiving the **encrypted HTTPS requests**, sending the **decrypted HTTP requests** to the actual HTTP application running in the same server (the **FastAPI** application, in this case), take the **HTTP response** from the application, **encrypt it** using the appropriate **HTTPS certificate** and sending it back...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope.go

    	}
    	return nil
    }
    
    type envelopeTransformer struct {
    	envelopeService kmsservice.Service
    	providerName    string
    	stateFunc       StateFunc
    
    	// cache is a thread-safe expiring lru cache which caches decrypted DEKs indexed by their encrypted form.
    	cache       *simpleCache
    	apiServerID string
    }
    
    // NewEnvelopeTransformer returns a transformer which implements a KEK-DEK based envelope encryption scheme.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 00:23:50 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  4. src/go/internal/gcimporter/gcimporter_test.go

    	// interfaces
    	{"context.Context", "type Context interface{Deadline() (deadline time.Time, ok bool); Done() <-chan struct{}; Err() error; Value(key any) any}"},
    	{"crypto.Decrypter", "type Decrypter interface{Decrypt(rand io.Reader, msg []byte, opts DecrypterOpts) (plaintext []byte, err error); Public() PublicKey}"},
    	{"encoding.BinaryMarshaler", "type BinaryMarshaler interface{MarshalBinary() (data []byte, err error)}"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. src/crypto/rsa/rsa.go

    // interface isn't necessary, there are functions for encrypting/decrypting
    // with v1.5/OAEP and signing/verifying with v1.5/PSS. If one needs to abstract
    // over the public key primitive, the PrivateKey type implements the
    // Decrypter and Signer interfaces from the crypto package.
    //
    // Operations involving private keys are implemented using constant-time
    // algorithms, except for [GenerateKey], [PrivateKey.Precompute], and
    // [PrivateKey.Validate].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/NtlmContext.java

            if ( encrypted ) {
                try {
                    trunc = this.sealServerHandle.doFinal(trunc);
                    if ( log.isDebugEnabled() ) {
                        log.debug("Decrypted " + Hexdump.toHexString(trunc));
                    }
                }
                catch ( GeneralSecurityException e ) {
                    throw new CIFSException("Failed to decrypt MIC", e);
                }
            }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 15.7K bytes
    - Viewed (0)
  7. src/crypto/tls/ticket.go

    	return encrypted, nil
    }
    
    // DecryptTicket decrypts a ticket encrypted by [Config.EncryptTicket]. It can
    // be used as a [Config.UnwrapSession] implementation.
    //
    // If the ticket can't be decrypted or parsed, DecryptTicket returns (nil, nil).
    func (c *Config) DecryptTicket(identity []byte, cs ConnectionState) (*SessionState, error) {
    	ticketKeys := c.ticketKeys(nil)
    	stateBytes := c.decryptTicket(identity, ticketKeys)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. internal/kms/kms.go

    	Name string
    
    	// Version is the version of the master used for
    	// decryption. If empty, the latest key version
    	// is used.
    	Version int
    
    	// Ciphertext is the encrypted data that gets
    	// decrypted.
    	Ciphertext []byte
    
    	// AssociatedData is the crypto. associated data.
    	// It must match the data used during encryption
    	// or data key generation.
    	AssociatedData Context
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. cmd/s3-zip-handlers.go

    	// Successful response.
    	w.WriteHeader(http.StatusOK)
    }
    
    // Update the passed zip object metadata with the zip contents info, file name, modtime, size, etc.
    // The returned zip index will de decrypted.
    func updateObjectMetadataWithZipInfo(ctx context.Context, objectAPI ObjectLayer, bucket, object string, opts ObjectOptions) ([]byte, error) {
    	files, srcInfo, err := getFilesListFromZIPObject(ctx, objectAPI, bucket, object, opts)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. cmd/object-api-interface.go

    	LifecycleAuditEvent lcAuditEvent
    
    	WantChecksum *hash.Checksum // x-amz-checksum-XXX checksum sent to PutObject/ CompleteMultipartUpload.
    
    	NoDecryption                        bool      // indicates if the stream must be decrypted.
    	PreserveETag                        string    // preserves this etag during a PUT call.
    	NoLock                              bool      // indicates to lower layers if the caller is expecting to hold locks.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 20:27:52 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top