提交 0713f8ab 编写于 作者: B Ben Laurie

Parameter correction for CIOFSESSION.

上级 93d9121a
...@@ -106,7 +106,8 @@ static int dev_crypto_init(EVP_CIPHER_CTX *ctx) ...@@ -106,7 +106,8 @@ static int dev_crypto_init(EVP_CIPHER_CTX *ctx)
static int dev_crypto_cleanup(EVP_CIPHER_CTX *ctx) static int dev_crypto_cleanup(EVP_CIPHER_CTX *ctx)
{ {
if(ioctl(fd,CIOCFSESSION,data(ctx)->ses) == -1) fprintf(stderr,"clean up session %d\n",data(ctx)->ses);
if(ioctl(fd,CIOCFSESSION,&data(ctx)->ses) == -1)
err("CIOCFSESSION failed"); err("CIOCFSESSION failed");
OPENSSL_free(data(ctx)->key); OPENSSL_free(data(ctx)->key);
...@@ -139,6 +140,7 @@ static int dev_crypto_des_ede3_init_key(EVP_CIPHER_CTX *ctx, ...@@ -139,6 +140,7 @@ static int dev_crypto_des_ede3_init_key(EVP_CIPHER_CTX *ctx,
ctx->cipher=EVP_des_ede3_cbc(); ctx->cipher=EVP_des_ede3_cbc();
return ctx->cipher->init(ctx,key,iv,enc); return ctx->cipher->init(ctx,key,iv,enc);
} }
fprintf(stderr,"created session %d\n",data(ctx)->ses);
return 1; return 1;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册