Module: packet/secret_key

packet/secret_key

new require("packet/secret_key")()

Source:
Source:

Members

algorithm :openpgp.publickey :openpgp.publickey

Public key algorithm
Type:
  • openpgp.publickey
Inherited From:
Source:

created :Date :Date

Key creation date.
Type:
  • Date
Inherited From:
Source:

mpi :module:type/mpi :module:type/mpi

A list of multiprecision integers
Type:
Inherited From:
Source:

readPublicKey

Internal Parser for public keys as specified in RFC 4880 section 5.5.2 Public-Key Packet Formats called by read_tag<num>
Inherited From:
Source:

Methods

decrypt(str_passphrase) → {Boolean}

Decrypts the private key MPIs which are needed to use the key. openpgp_packet_keymaterial.hasUnencryptedSecretKeyData should be false otherwise a call to this function is not needed
Parameters:
Name Type Description
str_passphrase String The passphrase for this private key as string
Source:
Returns:
True if the passphrase was correct or MPI already decrypted; false if not
Type
Boolean

encrypt(passphrase)

Encrypt the payload. By default, we use aes256 and iterated, salted string to key specifier
Parameters:
Name Type Description
passphrase String
Source:

getFingerprint() → {String}() → {String}

Calculates the fingerprint of the key
Inherited From:
Source:
Returns:
A string containing the fingerprint
Type
String

getKeyId() → {String}() → {String}

Calculates the key id of the key
Inherited From:
Source:
Returns:
A 8 byte key id
Type
String

read(bytes)

Internal parser for private keys as specified in RFC 4880 section 5.5.3
Parameters:
Name Type Description
bytes String Input string to read the packet from
Source:

write() → {String}

Creates an OpenPGP key packet for the given key.
Source:
Returns:
A string of bytes containing the secret key OpenPGP packet
Type
String