You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/api/loaders.mdx
+32Lines changed: 32 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -389,6 +389,38 @@ module.exports = function (source) {
389
389
};
390
390
```
391
391
392
+
### this.hashDigest
393
+
394
+
`string`
395
+
396
+
<Badge text="5.95.0+" />
397
+
398
+
The encoding to use when generating the hash. See [output.hashDigest](/configuration/output/#outputhashdigest).
399
+
400
+
### this.hashDigestLength
401
+
402
+
`number`
403
+
404
+
<Badge text="5.95.0+" />
405
+
406
+
The prefix length of the hash digest to use. See [output.hashDigestLength](/configuration/output/#outputhashdigestlength).
407
+
408
+
### this.hashFunction
409
+
410
+
`string``function`
411
+
412
+
<Badge text="5.95.0+" />
413
+
414
+
The hashing algorithm to use. See [output.hashFunction](/configuration/output/#outputhashfunction).
415
+
416
+
### this.hashSalt
417
+
418
+
`string`
419
+
420
+
<Badge text="5.95.0+" />
421
+
422
+
An optional salt to update the hash via Node.JS' [`hash.update`](https://nodejs.org/api/crypto.html#crypto_hash_update_data_inputencoding). See [output.hashSalt](/configuration/output/#outputhashsalt).
0 commit comments