Compare commits

..

3 Commits

5 changed files with 45 additions and 52 deletions

View File

@ -1,3 +1,5 @@
# [0.1.0-develop.41](https://git.lumeweb.com/LumeWeb/libs5/compare/v0.1.0-develop.40...v0.1.0-develop.41) (2023-09-02)
# [0.1.0-develop.40](https://git.lumeweb.com/LumeWeb/libs5/compare/v0.1.0-develop.39...v0.1.0-develop.40) (2023-09-02) # [0.1.0-develop.40](https://git.lumeweb.com/LumeWeb/libs5/compare/v0.1.0-develop.39...v0.1.0-develop.40) (2023-09-02)

4
npm-shrinkwrap.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "@lumeweb/libs5", "name": "@lumeweb/libs5",
"version": "0.1.0-develop.40", "version": "0.1.0-develop.41",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@lumeweb/libs5", "name": "@lumeweb/libs5",
"version": "0.1.0-develop.40", "version": "0.1.0-develop.41",
"dependencies": { "dependencies": {
"@noble/curves": "^1.1.0", "@noble/curves": "^1.1.0",
"@noble/hashes": "^1.3.1", "@noble/hashes": "^1.3.1",

View File

@ -1,6 +1,6 @@
{ {
"name": "@lumeweb/libs5", "name": "@lumeweb/libs5",
"version": "0.1.0-develop.40", "version": "0.1.0-develop.41",
"type": "module", "type": "module",
"main": "lib/index.js", "main": "lib/index.js",
"repository": { "repository": {

View File

@ -1,40 +1,29 @@
export const cidTypeRaw = 0x26; export const CID_TYPES = {
export const cidTypeMetadataMedia = 0xc5; RAW: 0x26,
// const cidTypeMetadataFile = 0xc6; METADATA_MEDIA: 0xc5,
export const cidTypeMetadataWebApp = 0x59; METADATA_WEBAPP: 0x59,
export const cidTypeResolver = 0x25; RESOLVER: 0x25,
USER_IDENTITY: 0x77,
BRIDGE: 0x3a,
// format for dynamic encrypted CID
// type algo key resolver_type mkey_ed255 pubkey
// in entry: encrypt(RAW CID or MEDIA or SOMETHING)
export const cidTypeUserIdentity = 0x77; /// Used for immutable encrypted files and metadata formats, key can never be re-used
///
/// Used for file versions in Vup
ENCRYPTED_STATIC: 0xae,
ENCRYPTED_DYNAMIC: 0xad,
};
Object.freeze(CID_TYPES);
export const cidTypeBridge = 0x3a; export const REGISTRY_TYPES = {
CID: 0x5a,
// format for dynamic encrypted CID /// Used for encrypted files with update support
// type algo key resolver_type mkey_ed255 pubkey ///
// in entry: encrypt(RAW CID or MEDIA or SOMETHING) /// can point to resolver CID, Stream CID, Directory Metadata or Media Metadata object
ENCRYPTED_CID: 0x5e,
/// Used for immutable encrypted files and metadata formats, key can never be re-used };
///
/// Used for file versions in Vup
export const cidTypeEncryptedStatic = 0xae;
/// Used for encrypted files with update support
///
/// can point to resolver CID, Stream CID, Directory Metadata or Media Metadata object
export const cidTypeEncryptedDynamic = 0xad;
export const CID_TYPES = [
cidTypeRaw,
cidTypeMetadataMedia,
cidTypeMetadataWebApp,
cidTypeResolver,
cidTypeUserIdentity,
cidTypeBridge,
cidTypeEncryptedStatic,
cidTypeEncryptedDynamic,
];
export const registryS5CIDByte = 0x5a;
export const registryS5EncryptedByte = 0x5e;
// ! some multicodec bytes // ! some multicodec bytes
// BLAKE3 with default output size of 256 bits // BLAKE3 with default output size of 256 bits
@ -59,23 +48,25 @@ export const metadataTypeDirectory = 0x04;
export const metadataTypeProofs = 0x05; export const metadataTypeProofs = 0x05;
export const metadataTypeUserIdentity = 0x07; export const metadataTypeUserIdentity = 0x07;
export const METADATA_TYPES = [ export const METADATA_TYPES = {
metadataTypeMedia, MEDIA: 0x02,
metadataTypeWebApp, WEBAPP: 0x03,
metadataTypeDirectory, DIRECTORY: 0x04,
metadataTypeProofs, PROOF: 0x05,
metadataTypeUserIdentity, USER_IDENTITY: 0x07,
]; };
Object.freeze(METADATA_TYPES);
export const parentLinkTypeUserIdentity = 1; export const parentLinkTypeUserIdentity = 1;
export const parentLinkTypeBoard = 5; export const parentLinkTypeBoard = 5;
export const parentLinkTypeBridgeUser = 10; export const parentLinkTypeBridgeUser = 10;
export const PARENT_LINK_TYPES = [ export const PARENT_LINK_TYPES = {
parentLinkTypeUserIdentity, USER_IDENTITY: 1,
parentLinkTypeBoard, BOARD: 5,
parentLinkTypeBridgeUser, BRIDGE_USER: 10,
]; };
Object.freeze(PARENT_LINK_TYPES);
export const registryMaxDataSize = 64; export const registryMaxDataSize = 64;

View File

@ -1,7 +1,7 @@
import { base64url } from "multiformats/bases/base64"; import { base64url } from "multiformats/bases/base64";
import { base32 } from "multiformats/bases/base32"; import { base32 } from "multiformats/bases/base32";
import { equalBytes } from "@noble/curves/abstract/utils"; import { equalBytes } from "@noble/curves/abstract/utils";
import { cidTypeBridge } from "#constants.js"; import { CID_TYPES } from "#constants.js";
export class Multihash { export class Multihash {
fullBytes: Uint8Array; fullBytes: Uint8Array;
@ -35,7 +35,7 @@ export class Multihash {
} }
toString(): string { toString(): string {
return this.functionType === cidTypeBridge return this.functionType === CID_TYPES.BRIDGE
? new TextDecoder().decode(this.fullBytes) ? new TextDecoder().decode(this.fullBytes)
: this.toBase64Url(); : this.toBase64Url();
} }