Discuss this help topic in SecureBlackbox Forum

TElCMSSignature.UseCachedDigests

TElCMSSignature     


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


This property specifies whether to recalculate digests during signature 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 signature is recalculated or validated. This decreases the computational time, but may affect the security.
    Default value is False.

Discuss this help topic in SecureBlackbox Forum