本文整理汇总了TypeScript中elliptic.ec.keyFromPublic方法的典型用法代码示例。如果您正苦于以下问题:TypeScript ec.keyFromPublic方法的具体用法?TypeScript ec.keyFromPublic怎么用?TypeScript ec.keyFromPublic使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类elliptic.ec
的用法示例。
在下文中一共展示了ec.keyFromPublic方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: constructor
constructor(ext: string) {
const
keyParts = ext.split('|'),
x = Base64.decode(keyParts[0]),
y = Base64.decode(keyParts[1]);
const raw = Buffer.alloc(65)
raw[0] = 4;
raw.set(x, 1);
raw.set(y, 33);
this.keyPair = elliptic.keyFromPublic(raw);
}
示例2: addressFromPublicKeyBuffer
addressFromPublicKeyBuffer(pubKey: Buffer): string {
const ecKey = secp.keyFromPublic(pubKey);
const x = ecKey
.getPublic()
.getX()
.toBuffer();
const y = ecKey
.getPublic()
.getY()
.toBuffer();
const paddedBuffer = Buffer.concat([this.padTo32(x), this.padTo32(y)]);
const address = `0x${pubToAddress(paddedBuffer).toString('hex')}`;
return toChecksumAddress(address);
}