本文整理汇总了TypeScript中openpgp.generateKey函数的典型用法代码示例。如果您正苦于以下问题:TypeScript generateKey函数的具体用法?TypeScript generateKey怎么用?TypeScript generateKey使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了generateKey函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: initialize
public initialize(passPhrase : string, timeDeletingPassPhrase : number){
this.passPhrase = passPhrase;
this.timeDeletingPassPhrase = timeDeletingPassPhrase;
openpgp.generateKey({
userIds: [{ name:'FBCrypter', email:'Crypted@mail.com' }],
numBits: 1024, // RSA key size
passphrase: this.passPhrase // protects the private key
}).then( (key) => {
this.privateKey = key.privateKeyArmored;
this.publicKey = key.publicKeyArmored;
});
}
示例2:
import openpgp from "openpgp"
// Open PGP Sample codes
const options: openpgp.KeyOptions = {
numBits: 2048,
userIds: [{
name: 'Jon Smith',
email: 'jon.smith@example.org',
}],
passphrase: 'super long and hard to guess secret'
};
openpgp.generateKey(options).then((keypair) => {
// success
const privkey = keypair.privateKeyArmored;
const pubkey = keypair.publicKeyArmored;
}).catch((error) => {
// failure
});
const spubkey = '-----BEGIN PGP PUBLIC KEY BLOCK ... END PGP PUBLIC KEY BLOCK-----';
openpgp.key.readArmored(spubkey)
.then((publicKey) => {
return {
message: openpgp.message.fromText('Hello, World!'),
publicKeys: publicKey.keys
};
})
.then(openpgp.encrypt)
.then((pgpMessage) => {
示例3:
// Open PGP Sample codes
var options: openpgp.KeyOptions = {
numBits: 2048,
userIds: [{
name: 'Jon Smith',
email: 'jon.smith@example.org',
}, {
email: 'jon.smith@example.org',
}, {
name: 'Jon Smith',
}, {
}],
passphrase: 'super long and hard to guess secret'
};
openpgp.generateKey(options).then(function (keypair) {
// success
var privkey = keypair.privateKeyArmored;
var pubkey = keypair.publicKeyArmored;
}).catch(function (error) {
// failure
});
var spubkey = '-----BEGIN PGP PUBLIC KEY BLOCK ... END PGP PUBLIC KEY BLOCK-----';
openpgp.key.readArmored(spubkey)
.then(function (publicKey) {
return {
message: openpgp.message.fromText('Hello, World!'),
publicKeys: publicKey.keys