Newer
Older
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
49
50
51
{ mkDerivation
, QuickCheck
, SHA
, base
, binary
, bytestring
, crypto-api
, crypto-pubkey-types
, lib
, tagged
, test-framework
, test-framework-quickcheck2
}:
mkDerivation {
pname = "RSA";
version = "2.4.1";
sha256 = "72c5d8c45ef1013e0e8aff763bb8894df0f022f28e698e33ae87bbdb33d69041";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
binary
bytestring
crypto-api
crypto-pubkey-types
SHA
];
testHaskellDepends = [
base
binary
bytestring
crypto-api
crypto-pubkey-types
QuickCheck
SHA
tagged
test-framework
test-framework-quickcheck2
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1.";
license = lib.licenses.bsd3;
broken = false;
}