Interface PrivateKey

interface PrivateKey {
    algorithm: string;
    key: object;
}

Properties

Properties

algorithm: string

algorithm 表示算法名称,目前仅支持 RSA。

key: object

key 表示私钥内容。