Lines Matching refs:PEM
112 PEM chapter
115 PEM is an encapsulation format, meaning keys in it can actually be any of
117 don't need to worry about this detail. PEM keys are recognizable because they
123 A PEM block which starts with ``-----BEGIN CERTIFICATE-----`` is not a
133 Deserialize a private key from PEM encoded data to one of the supported
136 :param data: The PEM encoded key data.
154 :raises ValueError: If the PEM data could not be decrypted or if its
169 Deserialize a public key from PEM encoded data to one of the supported
170 asymmetric public key types. The PEM encoded data is typically a
180 :param bytes data: The PEM encoded key data.
194 :raises ValueError: If the PEM data's structure could not be decoded
204 Deserialize parameters from PEM encoded data to one of the supported
215 :param bytes data: The PEM encoded parameters data.
225 :raises ValueError: If the PEM data's structure could not be decoded
464 A PEM encoded RSA key will look like::
476 A PEM encoded key will look like::
508 A PEM encoded key will look like::
519 A PEM encoded key will look like::
586 .. attribute:: PEM
590 For PEM format. This is a base64 format with delimiters.