jose/docs/interfaces/key_generate_key_pair.GenerateKeyPairResult.md
Filip Skokan dd2cf9ed2d
refactor: redo exports to support broader tooling
BREAKING CHANGE: All module named exports have moved from subpaths to
just "jose". For example, `import { jwtVerify } from 'jose/jwt/verify'`
is now just `import { jwtVerify } from 'jose'`.

BREAKING CHANGE: All submodule default exports and named have been
removed in favour of just "jose" named exports.
2021-10-14 14:08:05 +02:00

474 B

Interface: GenerateKeyPairResult

Table of contents

Properties

Properties

privateKey

privateKey: KeyLike

The generated Private Key.


publicKey

publicKey: KeyLike

Public Key corresponding to the generated Private Key.