Discuss this help topic in SecureBlackbox Forum

TElCMSTimestamp.UseCachedDigests

TElCMSTimestamp     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


This property specifies whether to recalculate digests during timestamp calculation or validation.

Declaration

[C#]
    bool UseCachedDigests;

[VB.NET]
    Property UseCachedDigests As Boolean

[Pascal]
    property UseCachedDigests : boolean;

[C++]
    bool get_UseCachedDigests();
    void set_UseCachedDigests(bool Value);

[PHP]
    bool get_UseCachedDigests()
    void set_UseCachedDigests(bool $Value)

[Java]
    boolean getUseCachedDigests();
    void setUseCachedDigests(boolean Value);

Description

    If this property is set to True, digest values will be taken from previous calculations, otherwise they will be recalculated each time the timestamp is recalculated or validated. This decreases the computational time, but may affect the security.
    Default value is False.

See also:     Validate    

Discuss this help topic in SecureBlackbox Forum