@shard-auth/client
Version:
Next-generation API authentication without secret keys - MPC-based authentication with FROST threshold signatures
22 lines • 2.12 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.withTimeout = exports.calculateBackoff = exports.secureCompare = exports.secureZeroMemory = exports.AuthenticationError = exports.NetworkError = exports.SignatureGenerationError = exports.SignatureSessionError = exports.ShareNotFoundError = exports.SecureStorage = exports.ShardAuthClient = void 0;
// メインクラス
var shard_auth_client_1 = require("./shard-auth-client");
Object.defineProperty(exports, "ShardAuthClient", { enumerable: true, get: function () { return shard_auth_client_1.ShardAuthClient; } });
var secure_storage_1 = require("./secure-storage");
Object.defineProperty(exports, "SecureStorage", { enumerable: true, get: function () { return secure_storage_1.SecureStorage; } });
// エラークラス
var errors_1 = require("./errors");
Object.defineProperty(exports, "ShareNotFoundError", { enumerable: true, get: function () { return errors_1.ShareNotFoundError; } });
Object.defineProperty(exports, "SignatureSessionError", { enumerable: true, get: function () { return errors_1.SignatureSessionError; } });
Object.defineProperty(exports, "SignatureGenerationError", { enumerable: true, get: function () { return errors_1.SignatureGenerationError; } });
Object.defineProperty(exports, "NetworkError", { enumerable: true, get: function () { return errors_1.NetworkError; } });
Object.defineProperty(exports, "AuthenticationError", { enumerable: true, get: function () { return errors_1.AuthenticationError; } });
// ユーティリティ
var utils_1 = require("./utils");
Object.defineProperty(exports, "secureZeroMemory", { enumerable: true, get: function () { return utils_1.secureZeroMemory; } });
Object.defineProperty(exports, "secureCompare", { enumerable: true, get: function () { return utils_1.secureCompare; } });
Object.defineProperty(exports, "calculateBackoff", { enumerable: true, get: function () { return utils_1.calculateBackoff; } });
Object.defineProperty(exports, "withTimeout", { enumerable: true, get: function () { return utils_1.withTimeout; } });
//# sourceMappingURL=index.js.map