X-Git-Url: http://git.silcnet.org/gitweb/?p=silc.git;a=blobdiff_plain;f=lib%2Fsilccrypt%2Fsilccipher.c;h=35155c5103379a048a8063340d4aba7892129a0c;hp=3517317ec5c352a99eee7bd41417e1d372d8f84e;hb=a818c5b5411bbc4436d1c5f011236985c96bb787;hpb=7910ce2a5c55211a4ea09a52832c6ed32c0b64fd diff --git a/lib/silccrypt/silccipher.c b/lib/silccrypt/silccipher.c index 3517317e..35155c51 100644 --- a/lib/silccrypt/silccipher.c +++ b/lib/silccrypt/silccipher.c @@ -253,7 +253,7 @@ char *silc_cipher_get_supported(void) /* Encrypts */ bool silc_cipher_encrypt(SilcCipher cipher, const unsigned char *src, - unsigned char *dst, uint32 len, + unsigned char *dst, SilcUInt32 len, unsigned char *iv) { return cipher->cipher->encrypt(cipher->context, src, dst, len, iv); @@ -262,7 +262,7 @@ bool silc_cipher_encrypt(SilcCipher cipher, const unsigned char *src, /* Decrypts */ bool silc_cipher_decrypt(SilcCipher cipher, const unsigned char *src, - unsigned char *dst, uint32 len, + unsigned char *dst, SilcUInt32 len, unsigned char *iv) { return cipher->cipher->decrypt(cipher->context, src, dst, len, iv); @@ -271,7 +271,7 @@ bool silc_cipher_decrypt(SilcCipher cipher, const unsigned char *src, /* Sets the key for the cipher */ bool silc_cipher_set_key(SilcCipher cipher, const unsigned char *key, - uint32 keylen) + SilcUInt32 keylen) { return cipher->cipher->set_key(cipher->context, key, keylen); } @@ -294,14 +294,14 @@ void silc_cipher_get_iv(SilcCipher cipher, unsigned char *iv) /* Returns the key length of the cipher. */ -uint32 silc_cipher_get_key_len(SilcCipher cipher) +SilcUInt32 silc_cipher_get_key_len(SilcCipher cipher) { return cipher->cipher->key_len; } /* Returns the block size of the cipher. */ -uint32 silc_cipher_get_block_len(SilcCipher cipher) +SilcUInt32 silc_cipher_get_block_len(SilcCipher cipher) { return cipher->cipher->block_len; }