diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2016-01-24 08:19:01 -0500 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2016-01-27 07:36:06 -0500 |
commit | 1afe593b423918ffd5e449cec858b1591cd31781 (patch) | |
tree | 0378fce1f48fb3491c9e581ca1fe8e6a4178e40e /net/rxrpc/ar-internal.h | |
parent | 96953718623eb7ee8839ae667dfecad7b257d400 (diff) |
rxrpc: Use skcipher
This patch replaces uses of blkcipher with skcipher.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'net/rxrpc/ar-internal.h')
-rw-r--r-- | net/rxrpc/ar-internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rxrpc/ar-internal.h b/net/rxrpc/ar-internal.h index 2934a73a5981..71598f5b11b7 100644 --- a/net/rxrpc/ar-internal.h +++ b/net/rxrpc/ar-internal.h | |||
@@ -252,7 +252,7 @@ struct rxrpc_connection { | |||
252 | struct rxrpc_security *security; /* applied security module */ | 252 | struct rxrpc_security *security; /* applied security module */ |
253 | struct key *key; /* security for this connection (client) */ | 253 | struct key *key; /* security for this connection (client) */ |
254 | struct key *server_key; /* security for this service */ | 254 | struct key *server_key; /* security for this service */ |
255 | struct crypto_blkcipher *cipher; /* encryption handle */ | 255 | struct crypto_skcipher *cipher; /* encryption handle */ |
256 | struct rxrpc_crypt csum_iv; /* packet checksum base */ | 256 | struct rxrpc_crypt csum_iv; /* packet checksum base */ |
257 | unsigned long events; | 257 | unsigned long events; |
258 | #define RXRPC_CONN_CHALLENGE 0 /* send challenge packet */ | 258 | #define RXRPC_CONN_CHALLENGE 0 /* send challenge packet */ |