本文整理匯總了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