X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=sshdes.c;h=6ea32a14010c3ec6a0df340b50c65ed7825bf42c;hb=6b362191f1a2c6897e7b7bfa80beec1cd1f722fd;hp=4b22c71b64abbb7363ad1970fd9991bb3c541c92;hpb=fee1624c69a0ce8240b8c63d214d7e7a80053c88;p=PuTTY.git diff --git a/sshdes.c b/sshdes.c index 4b22c71b..6ea32a14 100644 --- a/sshdes.c +++ b/sshdes.c @@ -746,24 +746,24 @@ static void des_cbc3_decrypt(unsigned char *dest, const unsigned char *src, static void *des3_make_context(void) { - return smalloc(3*sizeof(DESContext)); + return snewn(3, DESContext); } static void *des3_ssh1_make_context(void) { /* Need 3 keys for each direction, in SSH1 */ - return smalloc(6*sizeof(DESContext)); + return snewn(6, DESContext); } static void *des_make_context(void) { - return smalloc(sizeof(DESContext)); + return snew(DESContext); } static void *des_ssh1_make_context(void) { /* Need one key for each direction, in SSH1 */ - return smalloc(2*sizeof(DESContext)); + return snewn(2, DESContext); } static void des3_free_context(void *handle) /* used for both 3DES and DES */