本文整理汇总了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:'[email protected]' }],
numBits: 1024, // RSA key size
passphrase: this.passPhrase // protects the private key
}).then( (key) => {
this.privateKey = key.privateKeyArmored;
this.publicKey = key.publicKeyArmored;
});
}
开发者ID:Jeremy-F,项目名称:FBCrypter,代码行数:12,代码来源:Background.ts
示例2:
import openpgp from "openpgp"
// Open PGP Sample codes
const options: openpgp.KeyOptions = {
numBits: 2048,
userIds: [{
name: 'Jon Smith',
email: '[email protected]',
}],
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) => {
开发者ID:apare,项目名称:DefinitelyTyped,代码行数:31,代码来源:openpgp-tests.ts
示例3:
// Open PGP Sample codes
var options: openpgp.KeyOptions = {
numBits: 2048,
userIds: [{
name: 'Jon Smith',
email: '[email protected]',
}, {
email: '[email protected]',
}, {
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
开发者ID:csrakowski,项目名称:DefinitelyTyped,代码行数:31,代码来源:openpgp-tests.ts
注:本文中的openpgp.generateKey函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论