summaryrefslogtreecommitdiff
path: root/cipher/gost28147.c
diff options
context:
space:
mode:
Diffstat (limited to 'cipher/gost28147.c')
-rw-r--r--cipher/gost28147.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cipher/gost28147.c b/cipher/gost28147.c
index 24385915..df16c3c6 100644
--- a/cipher/gost28147.c
+++ b/cipher/gost28147.c
@@ -48,12 +48,12 @@ gost_do_set_sbox (GOST28147_context *ctx, unsigned int index)
static gcry_err_code_t
gost_setkey (void *c, const byte *key, unsigned keylen,
- gcry_cipher_hd_t hd)
+ cipher_bulk_ops_t *bulk_ops)
{
int i;
GOST28147_context *ctx = c;
- (void)hd;
+ (void)bulk_ops;
if (keylen != 256 / 8)
return GPG_ERR_INV_KEYLEN;