mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
77 lines
2.1 KiB
TypeScript
77 lines
2.1 KiB
TypeScript
// Loaded from https://raw.githubusercontent.com/nats-io/nkeys.js/v1.0.0-7/src/public.ts
|
|
|
|
|
|
/*
|
|
* Copyright 2018-2020 The NATS Authors
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import { Codec } from "./codec.ts";
|
|
import { KeyPair, NKeysError, NKeysErrorCode } from "./nkeys.ts";
|
|
import { getEd25519Helper } from "./helper.ts";
|
|
|
|
/**
|
|
* @ignore
|
|
*/
|
|
export class PublicKey implements KeyPair {
|
|
publicKey?: Uint8Array;
|
|
|
|
constructor(publicKey: Uint8Array) {
|
|
this.publicKey = publicKey;
|
|
}
|
|
|
|
getPublicKey(): string {
|
|
if (!this.publicKey) {
|
|
throw new NKeysError(NKeysErrorCode.ClearedPair);
|
|
}
|
|
return new TextDecoder().decode(this.publicKey);
|
|
}
|
|
|
|
getPrivateKey(): Uint8Array {
|
|
if (!this.publicKey) {
|
|
throw new NKeysError(NKeysErrorCode.ClearedPair);
|
|
}
|
|
throw new NKeysError(NKeysErrorCode.PublicKeyOnly);
|
|
}
|
|
|
|
getSeed(): Uint8Array {
|
|
if (!this.publicKey) {
|
|
throw new NKeysError(NKeysErrorCode.ClearedPair);
|
|
}
|
|
throw new NKeysError(NKeysErrorCode.PublicKeyOnly);
|
|
}
|
|
|
|
sign(_: Uint8Array): Uint8Array {
|
|
if (!this.publicKey) {
|
|
throw new NKeysError(NKeysErrorCode.ClearedPair);
|
|
}
|
|
throw new NKeysError(NKeysErrorCode.CannotSign);
|
|
}
|
|
|
|
verify(input: Uint8Array, sig: Uint8Array): boolean {
|
|
if (!this.publicKey) {
|
|
throw new NKeysError(NKeysErrorCode.ClearedPair);
|
|
}
|
|
let buf = Codec._decode(this.publicKey);
|
|
return getEd25519Helper().verify(input, sig, buf.slice(1));
|
|
}
|
|
|
|
clear(): void {
|
|
if (!this.publicKey) {
|
|
return;
|
|
}
|
|
this.publicKey.fill(0);
|
|
this.publicKey = undefined;
|
|
}
|
|
}
|