This file is indexed.

/usr/share/doc/lua-scrypt/README is in lua-scrypt 1.1-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
lua-scrypt
==========

lua-scrypt is a binding to libscrypt which is a password crypting and
verification library.  lua-scrypt uses the [libscrypt][] library and
provides a simple interface for hashing and verifying passwords.

    local scrypt = require "scrypt"
    
    local hash = scrypt.hash_password("Hello world")

    assert(scrypt.verify_password(hash, "Hello world"))

Thanks
======

Originally, [Rob Kendrick][] wrote `lua-scrypt` back when there wasn't a shared
library for the scrypt algorithm.  The returned values were binary and a bit
messy, and as such they are not supported by this version of the library.

[libscrypt]: https://github.com/technion/libscrypt
[Rob Kendrick]: http://www.rjek.com/