Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for decryptKey (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/crypto/cipher/gcm.go

    	// to dst, returning the updated slice. The nonce must be NonceSize()
    	// bytes long and both it and the additional data must match the
    	// value passed to Seal.
    	//
    	// To reuse ciphertext's storage for the decrypted output, use ciphertext[:0]
    	// as dst. Otherwise, the remaining capacity of dst must not overlap plaintext.
    	//
    	// Even if the function fails, the contents of dst, up to its capacity,
    	// may be overwritten.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. docs/en/docs/img/deployment/https/https05.drawio

                            </Array>
                        </mxGeometry>
                    </mxCell>
                    <mxCell id="84" value="&lt;span style=&quot;font-family: &amp;#34;roboto&amp;#34; ; font-size: 24px&quot;&gt;Decrypted request for: someapp.example.com&lt;/span&gt;" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;strokeColor=#82b366;strokeWidth=3;fillColor=#d5e8d4;" parent="1" vertex="1">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 15.6K bytes
    - Viewed (0)
  9. src/crypto/tls/common.go

    		}
    		// The static RSA key exchange works by decrypting a challenge with the
    		// RSA private key, not by signing, so check the PrivateKey implements
    		// crypto.Decrypter, like *rsa.PrivateKey does.
    		if priv, ok := c.PrivateKey.(crypto.Decrypter); ok {
    			if _, ok := priv.Public().(*rsa.PublicKey); !ok {
    				return unsupported
    			}
    		} else {
    			return unsupported
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  10. internal/etag/etag.go

    // it. In this case, the stored ETag may not be a well-formed S3 ETag.
    // For example, it can be larger due to a checksum added by authenticated
    // encryption schemes. Such an ETag must be decrypted before sent to an
    // S3 client.
    //
    // # S3 Clients
    //
    // There are many different S3 client implementations. Most of them
    // access the ETag by looking for the HTTP response header key "Etag".
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 21:09:36 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top