The document describes hybrid cryptography, which combines asymmetric and symmetric encryption. It provides an example workflow of how hybrid encryption works, including encrypting a message with a symmetric key, encrypting the symmetric key with the receiver's public key, sending both to the receiver, decrypting the symmetric key with their private key, and decrypting the message with the symmetric key. It then provides a Ruby code example to demonstrate hybrid encryption of a text string.