1. 12 7月, 2009 1 次提交
  2. 11 7月, 2009 1 次提交
    • H
      crypto: shash - Export/import hash state only · 99d27e1c
      Herbert Xu 提交于
      This patch replaces the full descriptor export with an export of
      the partial hash state.  This allows the use of a consistent export
      format across all implementations of a given algorithm.
      
      This is useful because a number of cases require the use of the
      partial hash state, e.g., PadLock can use the SHA1 hash state
      to get around the fact that it can only hash contiguous data
      chunks.
      Signed-off-by: NHerbert Xu <herbert@gondor.apana.org.au>
      99d27e1c
  3. 18 2月, 2009 1 次提交
  4. 05 2月, 2009 1 次提交
  5. 25 12月, 2008 2 次提交
    • H
      crypto: hash - Add import/export interface · dec8b786
      Herbert Xu 提交于
      It is often useful to save the partial state of a hash function
      so that it can be used as a base for two or more computations.
      
      The most prominent example is HMAC where all hashes start from
      a base determined by the key.  Having an import/export interface
      means that we only have to compute that base once rather than
      for each message.
      Signed-off-by: NHerbert Xu <herbert@gondor.apana.org.au>
      dec8b786
    • H
      crypto: hash - Add shash interface · 7b5a080b
      Herbert Xu 提交于
      The shash interface replaces the current synchronous hash interface.
      It improves over hash in two ways.  Firstly shash is reentrant,
      meaning that the same tfm may be used by two threads simultaneously
      as all hashing state is stored in a local descriptor.
      
      The other enhancement is that shash no longer takes scatter list
      entries.  This is because shash is specifically designed for
      synchronous algorithms and as such scatter lists are unnecessary.
      
      All existing hash users will be converted to shash once the
      algorithms have been completely converted.
      
      There is also a new finup function that combines update with final.
      This will be extended to ahash once the algorithm conversion is
      done.
      
      This is also the first time that an algorithm type has their own
      registration function.  Existing algorithm types will be converted
      to this way in due course.
      Signed-off-by: NHerbert Xu <herbert@gondor.apana.org.au>
      7b5a080b
  6. 13 8月, 2008 1 次提交
  7. 10 7月, 2008 1 次提交