MongoDB\Driver\ClientEncryption::encrypt

(mongodb >=1.7.0)

MongoDB\Driver\ClientEncryption::encryptEncrypt a value

Opis

final public MongoDB\Driver\ClientEncryption::encrypt ( mixed $value [, array $options ] ) : MongoDB\BSON\Binary

Encrypts the value.

Parametry

value

The value to be encrypted. Any value that can be inserted into MongoDB can be encrypted using this method.

options

Encryption options
Option Type Description
algorithm string

The encryption algorithm to be used. Use the constants defined in MongoDB\Driver\ClientEncryption.

keyAltName string

Identifies a key vault collection document by keyAltName.

keyId MongoDB\BSON\Binary

Identifies a data key by _id. The value is a UUID (binary subtype 4).

Informacja: Exactly one of keyId and keyAltName must be provided. The algorithm option is required.

Zwracane wartości

Returns the encrypted value as MongoDB\BSON\Binary object with subtype 6.

Błędy/Wyjątki

Zobacz też:

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top