Back to Devexpress

SpreadsheetProtectionOptions.SpinCount Property

officefileapi-devexpress-dot-xtraspreadsheet-dot-spreadsheetprotectionoptions-37760dd4.md

latest2.2 KB
Original Source

SpreadsheetProtectionOptions.SpinCount Property

Gets or sets the number of iterations for the hashing function to run when comparing a password with the hashed value.

Namespace : DevExpress.XtraSpreadsheet

Assembly : DevExpress.Spreadsheet.v25.2.Core.dll

NuGet Package : DevExpress.Spreadsheet.Core

Declaration

csharp
[DefaultValue(100000)]
public int SpinCount { get; set; }
vb
<DefaultValue(100000)>
Public Property SpinCount As Integer

Property Value

TypeDefaultDescription
Int32100000

An integer that is the number of iterations.

|

Property Paths

You can access this nested property as listed below:

Object TypePath to SpinCount
DocumentOptions

.Protection .SpinCount

|

Remarks

The SpinCount property specifies the number of times the hashing function shall be iteratively run (using each iteration’s result as the input for the next iteration) when attempting to compare a user supplied password with the hash data. That is, it specifies the number of iterations used to calculate the Strong Password Verifier; by default, 100 000. High SpinCount values strengthen protection but decrease performance.

The property is in effect only if the SpreadsheetProtectionOptions.UseStrongPasswordVerifier property is set to true.

See Also

SpreadsheetProtectionOptions Class

SpreadsheetProtectionOptions Members

DevExpress.XtraSpreadsheet Namespace