Commit ebb01b84 authored by Nils Larsch's avatar Nils Larsch
Browse files

size_t -> int

parent a0d48e7e
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -120,8 +120,7 @@ int dsa_builtin_paramgen(DSA *ret, size_t bits, size_t qbits,
	BIGNUM *r0,*W,*X,*c,*test;
	BIGNUM *g=NULL,*q=NULL,*p=NULL;
	BN_MONT_CTX *mont=NULL;
	size_t i;
	int k,n=0,b,m=0, qsize = qbits >> 3;
	int i, k,n=0,b,m=0, qsize = qbits >> 3;
	int counter=0;
	int r=0;
	BN_CTX *ctx=NULL;