Skip to content
  1. Jun 22, 2015
    • Herbert Xu's avatar
      crypto: user - Add CRYPTO_MSG_DELRNG · 9aa867e4
      Herbert Xu authored
      
      
      This patch adds a new crypto_user command that allows the admin to
      delete the crypto system RNG.  Note that this can only be done if
      the RNG is currently not in use.  The next time it is used a new
      system RNG will be allocated.
      
      Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
      9aa867e4
    • Herbert Xu's avatar
      crypto: user - Move cryptouser.h to uapi · d0497524
      Herbert Xu authored
      
      
      The header file cryptouser.h only contains information that is
      exported to user-space.
      
      Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
      d0497524
    • Herbert Xu's avatar
      crypto: rng - Do not free default RNG when it becomes unused · 7cecadb7
      Herbert Xu authored
      
      
      Currently we free the default RNG when its use count hits zero.
      This was OK when the IV generators would latch onto the RNG at
      instance creation time and keep it until the instance is torn
      down.
      
      Now that IV generators only keep the RNG reference during init
      time this scheme causes the default RNG to come and go at a high
      frequencey.  This is highly undesirable as we want to keep a single
      RNG in use unless the admin wants it to be removed.
      
      This patch changes the scheme so that the system RNG once allocated
      is never removed unless a specifically requested.
      
      Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
      7cecadb7
    • Herbert Xu's avatar
      crypto: skcipher - Allow givencrypt to be NULL · 21dbd96f
      Herbert Xu authored
      
      
      Currently for skcipher IV generators they must provide givencrypt
      as that is the whole point.  We are currently replacing skcipher
      IV generators with explicit IV generators.  In order to maintain
      backwards compatibility, we need to allow the IV generators to
      still function as a normal skcipher when the RNG Is not present
      (e.g., in the initramfs during boot).  IOW everything but givencrypt
      and givdecrypt will still work but those two will fail.
      
      Therefore this patch assigns a default givencrypt that simply
      returns an error should it be NULL.
      
      Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
      21dbd96f
  2. Jun 21, 2015
  3. Jun 19, 2015
  4. Jun 18, 2015
  5. Jun 17, 2015