aboutsummaryrefslogtreecommitdiff
path: root/src/lib/crypto/yarrow/ycipher.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/crypto/yarrow/ycipher.h')
-rw-r--r--src/lib/crypto/yarrow/ycipher.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/crypto/yarrow/ycipher.h b/src/lib/crypto/yarrow/ycipher.h
index 87ae85a..a78cf16 100644
--- a/src/lib/crypto/yarrow/ycipher.h
+++ b/src/lib/crypto/yarrow/ycipher.h
@@ -29,9 +29,9 @@ typedef struct
#endif
-int krb5int_yarrow_cipher_init (CIPHER_CTX *ctx, const char *key);
+int krb5int_yarrow_cipher_init (CIPHER_CTX *ctx, unsigned const char *key);
int krb5int_yarrow_cipher_encrypt_block
-(CIPHER_CTX *ctx, const char *in, char *out);
+(CIPHER_CTX *ctx, const unsigned char *in, unsigned char *out);
#if !defined( YARROW_NO_MATHLIB )
#define POW_CIPHER_KEY_SIZE pow(2.0, CIPHER_KEY_SIZE * 8 / 3.0)