Open jrabausch opened 7 months ago
Hi, I stumbled across a bug in the getFingerprint function, line 2406:
getFingerprint
options.hash = (typeof hash !== 'undefined') ? hash : 'SHA-512'
should read:
options.hash = (typeof options.hash !== 'undefined') ? options.hash : 'SHA-512'
Kind regards Johannes
Hi, I stumbled across a bug in the
getFingerprint
function, line 2406:should read:
Kind regards Johannes