This file is indexed.

/usr/share/doc/libghc-cipher-rc4-doc/html/cipher-rc4.txt is in libghc-cipher-rc4-doc 0.1.4-5build1.

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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/


-- | Fast RC4 cipher implementation
--   
--   Fast RC4 cipher implementation
@package cipher-rc4
@version 0.1.4


-- | Simple implementation of the RC4 stream cipher.
--   <a>http://en.wikipedia.org/wiki/RC4</a>
--   
--   Initial FFI implementation by Peter White <a>peter@janrain.com</a>
--   
--   Reorganized and simplified to have an opaque context.
module Crypto.Cipher.RC4

-- | RC4 Stream cipher
data RC4

-- | The encryption context for RC4
newtype Ctx
Ctx :: ByteString -> Ctx

-- | RC4 context initialization.
--   
--   seed the context with an initial key. the key size need to be adequate
--   otherwise security takes a hit.
initCtx :: ByteString -> Ctx

-- | generate the next len bytes of the rc4 stream without combining it to
--   anything.
generate :: Ctx -> Int -> (Ctx, ByteString)

-- | RC4 xor combination of the rc4 stream with an input
combine :: Ctx -> ByteString -> (Ctx, ByteString)

-- | <i>Deprecated: use combine instead</i>
encrypt :: Ctx -> ByteString -> (Ctx, ByteString)

-- | <i>Deprecated: use combine instead</i>
decrypt :: Ctx -> ByteString -> (Ctx, ByteString)
instance Data.Byteable.Byteable Crypto.Cipher.RC4.RC4
instance Crypto.Cipher.Types.Base.Cipher Crypto.Cipher.RC4.RC4
instance Crypto.Cipher.Types.Stream.StreamCipher Crypto.Cipher.RC4.RC4
instance GHC.Show.Show Crypto.Cipher.RC4.Ctx