userHash property
Uint8List
get
userHash
User password hash.
Implementation
Uint8List get userHash {
final u = encryptDict['U'];
if (u is PdfString) return u.bytes;
return Uint8List(0);
}
User password hash.
Uint8List get userHash {
final u = encryptDict['U'];
if (u is PdfString) return u.bytes;
return Uint8List(0);
}