• Hello
Search Results for

    Show / Hide Table of Contents

    Struct ProtectedBool

    Drop-in replacement for System.Boolean that obfuscates the value in memory and reports tampering to the .

    Implements
    IProtected
    IDisposable
    ISerializationCallbackReceiver
    Namespace: GUPS.AntiCheat.Protected
    Assembly: cs.temp.dll.dll
    Syntax
    public struct ProtectedBool

    Constructors

    ProtectedBool(Boolean)

    Initializes a new protected boolean with the specified value.

    Declaration
    public ProtectedBool(bool _Value = false)
    Parameters
    Type Name Description
    System.Boolean _Value

    Initial value.

    Properties

    HasIntegrity

    Gets a value indicating whether the protected value still has integrity (i.e. the honeypot has not been tampered with).

    Declaration
    public bool HasIntegrity { get; }
    Property Value
    Type Description
    System.Boolean

    Value

    Gets or sets the unobfuscated value.

    Declaration
    public bool Value { get; set; }
    Property Value
    Type Description
    System.Boolean
    Remarks

    Reading the value runs an integrity check; if the honeypot has been tampered with, the is notified.

    Methods

    CheckIntegrity()

    Returns true when the honeypot still matches the obfuscated value.

    Declaration
    public bool CheckIntegrity()
    Returns
    Type Description
    System.Boolean

    true if the value is intact; otherwise false.

    Dispose()

    Clears the obfuscated value and the secret.

    Declaration
    public void Dispose()

    Equals(Object)

    Returns true when this protected boolean equals the given object.

    Declaration
    public override bool Equals(object obj)
    Parameters
    Type Name Description
    System.Object obj

    Object to compare with.

    Returns
    Type Description
    System.Boolean

    true if equal; otherwise false.

    Overrides
    System.ValueType.Equals(System.Object)

    GetHashCode()

    Returns the hash code of the unobfuscated value.

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    System.Int32

    Hash code of the unobfuscated value.

    Overrides
    System.ValueType.GetHashCode()

    Obfuscate()

    Rerolls the secret and re-obfuscates the current value.

    Declaration
    public void Obfuscate()

    OnAfterDeserialize()

    Unity deserialization hook; rebuilds the obfuscation state from the deserialized honeypot value.

    Declaration
    public void OnAfterDeserialize()

    OnBeforeSerialize()

    Unity serialization hook; writes the true value into the honeypot field.

    Declaration
    public void OnBeforeSerialize()

    ToString()

    Returns the string representation of the unobfuscated value.

    Declaration
    public override string ToString()
    Returns
    Type Description
    System.String

    The string representation of the unobfuscated value.

    Overrides
    System.ValueType.ToString()

    Operators

    Equality(ProtectedBool, ProtectedBool)

    Returns true when both protected booleans represent the same value.

    Declaration
    public static bool operator ==(ProtectedBool v1, ProtectedBool v2)
    Parameters
    Type Name Description
    ProtectedBool v1

    First operand.

    ProtectedBool v2

    Second operand.

    Returns
    Type Description
    System.Boolean

    true if equal; otherwise false.

    Implicit(ProtectedBool to Boolean)

    Implicitly unwraps a protected bool to its bool value.

    Declaration
    public static implicit operator bool (ProtectedBool _Value)
    Parameters
    Type Name Description
    ProtectedBool _Value

    Protected bool to unwrap.

    Returns
    Type Description
    System.Boolean

    The unobfuscated bool value.

    Implicit(Boolean to ProtectedBool)

    Implicitly wraps a bool in a protected bool.

    Declaration
    public static implicit operator ProtectedBool(bool _Value)
    Parameters
    Type Name Description
    System.Boolean _Value

    Value to wrap.

    Returns
    Type Description
    ProtectedBool

    A protected bool holding the given value.

    Inequality(ProtectedBool, ProtectedBool)

    Returns true when the two protected booleans represent different values.

    Declaration
    public static bool operator !=(ProtectedBool v1, ProtectedBool v2)
    Parameters
    Type Name Description
    ProtectedBool v1

    First operand.

    ProtectedBool v2

    Second operand.

    Returns
    Type Description
    System.Boolean

    true if not equal; otherwise false.

    Implements

    IProtected
    IDisposable
    ISerializationCallbackReceiver

    See Also

    ProtectedInt32
    In This Article
    Back to top GuardingPearSoftware documentation