From a66c79ac1b1905a111b725d6bc4c2f857060281a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= Date: Thu, 6 Feb 2014 15:03:47 +0100 Subject: New function blowfish128_set_key. --- blowfish.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'blowfish.c') diff --git a/blowfish.c b/blowfish.c index 0ffa332d..8c8485ad 100644 --- a/blowfish.c +++ b/blowfish.c @@ -9,6 +9,7 @@ /* nettle, low-level cryptographics library * + * Copyright (C) 2014 Niels Möller * Copyright (C) 2010 Simon Josefsson * Copyright (C) 1998, 2001, 2002, 2003 Free Software Foundation, Inc. * @@ -412,3 +413,9 @@ blowfish_set_key (struct blowfish_ctx *ctx, return 1; } + +int +blowfish128_set_key(struct blowfish_ctx *ctx, const uint8_t *key) +{ + return blowfish_set_key (ctx, BLOWFISH128_KEY_SIZE, key); +} -- cgit v1.2.1