Skip to content

Commit

Permalink
add srp and sha1 deps and targets
Browse files Browse the repository at this point in the history
  • Loading branch information
sqs committed Apr 19, 2011
1 parent aca7c2c commit 2a1cf30
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion configure
Expand Up @@ -4,19 +4,21 @@ use strict;

my ($arg, $i, $j, $targ);

my @targets = qw/sjcl aes bitArray codecString codecHex codecBase64 codecBytes sha256 ccm cbc ocb2 hmac pbkdf2 random convenience bn ecc/;
my @targets = qw/sjcl aes bitArray codecString codecHex codecBase64 codecBytes sha256 sha1 ccm cbc ocb2 hmac pbkdf2 srp random convenience bn ecc/;
my %deps = ('aes'=>'sjcl',
'bitArray'=>'sjcl',
'codecString'=>'bitArray',
'codecHex'=>'bitArray',
'codecBase64'=>'bitArray',
'codecBytes'=>'bitArray',
'sha256'=>'codecString',
'sha1'=>'codecString',
'cbc'=>'bitArray,aes',
'ccm'=>'bitArray,aes',
'ocb2'=>'bitArray,aes',
'hmac'=>'sha256',
'pbkdf2'=>'hmac',
'srp'=>'sha1,bn,bitArray',
'ecc'=>'bn',
'random'=>'sha256,aes',
'convenience'=>'ccm,pbkdf2,random');
Expand Down

0 comments on commit 2a1cf30

Please sign in to comment.