Struct gapi_grpc::google::privacy::dlp::v2::CryptoReplaceFfxFpeConfig[][src]

pub struct CryptoReplaceFfxFpeConfig {
    pub crypto_key: Option<CryptoKey>,
    pub context: Option<FieldId>,
    pub surrogate_info_type: Option<InfoType>,
    pub alphabet: Option<Alphabet>,
}

Replaces an identifier with a surrogate using Format Preserving Encryption (FPE) with the FFX mode of operation; however when used in the ReidentifyContent API method, it serves the opposite function by reversing the surrogate back into the original identifier. The identifier must be encoded as ASCII. For a given crypto key and context, the same identifier will be replaced with the same surrogate. Identifiers must be at least two characters long. In the case that the identifier is the empty string, it will be skipped. See https://cloud.google.com/dlp/docs/pseudonymization to learn more.

Note: We recommend using CryptoDeterministicConfig for all use cases which do not require preserving the input alphabet space and size, plus warrant referential integrity.

Fields

crypto_key: Option<CryptoKey>

Required. The key used by the encryption algorithm.

context: Option<FieldId>

The ‘tweak’, a context may be used for higher security since the same identifier in two different contexts won’t be given the same surrogate. If the context is not set, a default tweak will be used.

If the context is set but:

  1. there is no record present when transforming a given value or
  2. the field is not present when transforming a given value,

a default tweak will be used.

Note that case (1) is expected when an InfoTypeTransformation is applied to both structured and non-structured ContentItems. Currently, the referenced field may be of value type integer or string.

The tweak is constructed as a sequence of bytes in big endian byte order such that:

surrogate_info_type: Option<InfoType>

The custom infoType to annotate the surrogate with. This annotation will be applied to the surrogate by prefixing it with the name of the custom infoType followed by the number of characters comprising the surrogate. The following scheme defines the format: info_type_name(surrogate_character_count):surrogate

For example, if the name of custom infoType is ‘MY_TOKEN_INFO_TYPE’ and the surrogate is ‘abc’, the full replacement value will be: ‘MY_TOKEN_INFO_TYPE(3):abc’

This annotation identifies the surrogate when inspecting content using the custom infoType SurrogateType. This facilitates reversal of the surrogate when it occurs in free text.

In order for inspection to work properly, the name of this infoType must not occur naturally anywhere in your data; otherwise, inspection may find a surrogate that does not correspond to an actual identifier. Therefore, choose your custom infoType name carefully after considering what your data looks like. One way to select a name that has a high chance of yielding reliable detection is to include one or more unicode characters that are highly improbable to exist in your data. For example, assuming your data is entered from a regular ASCII keyboard, the symbol with the hex code point 29DD might be used like so: ⧝MY_TOKEN_TYPE

alphabet: Option<Alphabet>

Choose an alphabet which the data being transformed will be made up of.

Trait Implementations

impl Clone for CryptoReplaceFfxFpeConfig[src]

impl Debug for CryptoReplaceFfxFpeConfig[src]

impl Default for CryptoReplaceFfxFpeConfig[src]

impl Message for CryptoReplaceFfxFpeConfig[src]

impl PartialEq<CryptoReplaceFfxFpeConfig> for CryptoReplaceFfxFpeConfig[src]

impl StructuralPartialEq for CryptoReplaceFfxFpeConfig[src]

Auto Trait Implementations

impl RefUnwindSafe for CryptoReplaceFfxFpeConfig

impl Send for CryptoReplaceFfxFpeConfig

impl Sync for CryptoReplaceFfxFpeConfig

impl Unpin for CryptoReplaceFfxFpeConfig

impl UnwindSafe for CryptoReplaceFfxFpeConfig

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]