Hierarchical Identity Based Encryption

On

Apr 28, 2016 - We prove that there is no fully black-box construction of collision-resistant hash functions (CRH) from hierarchical identity-based encryption. Jul 03, 2014  A hierarchical identity-based encryption (HIBE) consists of four algorithms Setup, KeyGen, 2 Enc, and Dec. The specification of each algorithm is as follows. Setup (λ, N, L): It takes a security parameter λ, the maximum number of users N, and the maximum length of the hierarchy of identity L as input.

Is there a way to setup a hierarchical encryption using public key encryption ?

Let's say a higher level user can decrypt messages encrypted by lower level users. Is it something possible ? I guess it is only possible to do with hierarchical key management, like the higher level users have access to the lower level user's keys.

Any other option to do something like this ?

Gabor ForgacsGabor ForgacsHierarchical Identity Based Encryption
3001 gold badge5 silver badges15 bronze badges

1 Answer

What I'd propose is, to some extent, an extension of your hierarchical key management idea.

Here's the core idea:We use a cryptographically-strong random secret to encrypt the file symetrically (public-key-encryption of large datasets is actually quite slow, so most software like GPG uses a symmetric block cipher to encrypt the data, then they public-key-encrypt the random secret.). The random secret itself is encrypted with the key of each user that is allowed to access the data.

This scheme is similar to when you send a PGP message to multiple receivers. It's quite simple, but the problem is you have to update any encrypted data if users are added, modified or removed. Generally you can introduce intermediary keys to counteract this effect.

In order to address these issues, cryptographers invented HIBE (Hierarchical Identity-Based Encryption). If you want to use this in a real application, please don't build the crypto stack yourself, but use proven, peer-reviewed algorithms.

Uli Köhler

Hierarchical Identity Based Encryption Pdf

Hierarchical Identity Based EncryptionEncryptionUli Köhler
9,0178 gold badges41 silver badges95 bronze badges
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.

Not the answer you're looking for? Browse other questions tagged encryptionrsapublic-key-encryption or ask your own question.