UI for Zipcoin Blue

1234567891011
  1. export declare const ERROR_SSH_MISSING_PRIVKEY = "SSH_MISSING_PRIVKEY";
  2. export declare const ERROR_SSH_INVALID_PUBKEY = "SSH_INVALID_PUBKEY";
  3. export declare const ERROR_SSH_INVALID_PRIVKEY = "SSH_INVALID_PRIVKEY";
  4. export declare function getGeneratedPrivateKeyPath(userId?: number): Promise<string>;
  5. export declare function parsePublicKeyFile(pubkeyPath: string): Promise<[string, string, string, string]>;
  6. /**
  7. * @return Promise<[full pubkey, algorithm, public numbers, annotation]>
  8. */
  9. export declare function parsePublicKey(pubkey: string): Promise<[string, string, string, string]>;
  10. export declare function validatePrivateKey(keyPath: string): Promise<void>;