@yume-chan/adb-credential-web
Advanced tools
Comparing version 0.0.12 to 0.0.13
{ | ||
"files": { | ||
"libraries/adb-credential-web/.rush/temp/shrinkwrap-deps.json": "c2eea9e95f7a91089a0529b750286ccd75726818", | ||
"libraries/adb-credential-web/CHANGELOG.json": "bdb99f8ca3eff53b8b260fae2e230e34d55a6902", | ||
"libraries/adb-credential-web/CHANGELOG.md": "89f2ed92996da15a9f5ac27a7ff3d64b58b72f35", | ||
"libraries/adb-credential-web/.rush/temp/shrinkwrap-deps.json": "33b90fa9ac2c165d2c550be4daa30217e725766d", | ||
"libraries/adb-credential-web/CHANGELOG.json": "4bd9bb01844f5d68579ef4fbbb5757399c86faa5", | ||
"libraries/adb-credential-web/CHANGELOG.md": "1efe083e89e217c2fee3e542ef5ab717ae56769c", | ||
"libraries/adb-credential-web/README.md": "35dc273a753ae6f722bad96ae6e52efe9b2d6840", | ||
"libraries/adb-credential-web/package.json": "f684dc163578c7b5a2245b5f552fa0482e301d55", | ||
"libraries/adb-credential-web/src/index.ts": "88b871f305e19ca09bd26b8fdc868284790379af", | ||
"libraries/adb-credential-web/package.json": "4f44ba4eb7d52639bd2f13c49714f775f6762b9c", | ||
"libraries/adb-credential-web/src/index.ts": "42f5ead9cfde7266096dce1e82f3c7cc0309986b", | ||
"libraries/adb-credential-web/tsconfig.json": "43cb24d0667828c30374e15c5930a55ea1b0bb7e" | ||
@@ -10,0 +10,0 @@ }, |
{ | ||
"files": { | ||
"libraries/adb-credential-web/.rush/temp/shrinkwrap-deps.json": "c2eea9e95f7a91089a0529b750286ccd75726818", | ||
"libraries/adb-credential-web/CHANGELOG.json": "bdb99f8ca3eff53b8b260fae2e230e34d55a6902", | ||
"libraries/adb-credential-web/CHANGELOG.md": "89f2ed92996da15a9f5ac27a7ff3d64b58b72f35", | ||
"libraries/adb-credential-web/.rush/temp/shrinkwrap-deps.json": "33b90fa9ac2c165d2c550be4daa30217e725766d", | ||
"libraries/adb-credential-web/CHANGELOG.json": "4bd9bb01844f5d68579ef4fbbb5757399c86faa5", | ||
"libraries/adb-credential-web/CHANGELOG.md": "1efe083e89e217c2fee3e542ef5ab717ae56769c", | ||
"libraries/adb-credential-web/README.md": "35dc273a753ae6f722bad96ae6e52efe9b2d6840", | ||
"libraries/adb-credential-web/package.json": "f684dc163578c7b5a2245b5f552fa0482e301d55", | ||
"libraries/adb-credential-web/src/index.ts": "88b871f305e19ca09bd26b8fdc868284790379af", | ||
"libraries/adb-credential-web/package.json": "4f44ba4eb7d52639bd2f13c49714f775f6762b9c", | ||
"libraries/adb-credential-web/src/index.ts": "42f5ead9cfde7266096dce1e82f3c7cc0309986b", | ||
"libraries/adb-credential-web/tsconfig.json": "43cb24d0667828c30374e15c5930a55ea1b0bb7e" | ||
@@ -10,0 +10,0 @@ }, |
{ | ||
"tslib@2.3.1": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==", | ||
"typescript@4.7.0-dev.20220403": "sha512-1kTFg2+08XMrBmgDDQVNxSmDWcVstTcNT+rt9JC9Z511ewqUYe45IpWSVdS/xSSTei3N5grakAVbSAhZO0HloA==" | ||
"typescript@4.7.0-beta": "sha512-m+CNL8lzHyHDxYYDTI+pm5hw5/bufYVGan2bokPyJY/y9C/4W/PCWMtYZ0vV9fLXbEL57elMeoaz9Evxs8UQ+A==" | ||
} |
@@ -5,2 +5,8 @@ { | ||
{ | ||
"version": "0.0.13", | ||
"tag": "@yume-chan/adb-credential-web_v0.0.13", | ||
"date": "Thu, 28 Apr 2022 01:23:53 GMT", | ||
"comments": {} | ||
}, | ||
{ | ||
"version": "0.0.12", | ||
@@ -7,0 +13,0 @@ "tag": "@yume-chan/adb-credential-web_v0.0.12", |
# Change Log - @yume-chan/adb-credential-web | ||
This log was last generated on Sun, 03 Apr 2022 11:18:47 GMT and should not be manually modified. | ||
This log was last generated on Thu, 28 Apr 2022 01:23:53 GMT and should not be manually modified. | ||
## 0.0.13 | ||
Thu, 28 Apr 2022 01:23:53 GMT | ||
_Version update only_ | ||
## 0.0.12 | ||
@@ -6,0 +11,0 @@ Sun, 03 Apr 2022 11:18:47 GMT |
import { type AdbCredentialStore } from "@yume-chan/adb"; | ||
export declare function encodeUtf8(input: string): Uint8Array; | ||
export declare function decodeUtf8(array: Uint8Array): string; | ||
export default class AdbWebCredentialStore implements AdbCredentialStore { | ||
@@ -5,0 +3,0 @@ readonly localStorageKey: string; |
// cspell: ignore RSASSA | ||
import { calculateBase64EncodedLength, calculatePublicKey, calculatePublicKeyLength, decodeBase64, encodeBase64 } from "@yume-chan/adb"; | ||
const Utf8Encoder = new TextEncoder(); | ||
const Utf8Decoder = new TextDecoder(); | ||
export function encodeUtf8(input) { | ||
return Utf8Encoder.encode(input); | ||
} | ||
export function decodeUtf8(array) { | ||
return Utf8Decoder.decode(array); | ||
} | ||
import { calculateBase64EncodedLength, calculatePublicKey, calculatePublicKeyLength, decodeBase64, decodeUtf8, encodeBase64 } from "@yume-chan/adb"; | ||
export default class AdbWebCredentialStore { | ||
@@ -12,0 +4,0 @@ localStorageKey; |
{ | ||
"name": "@yume-chan/adb-credential-web", | ||
"version": "0.0.12", | ||
"version": "0.0.13", | ||
"description": "Credential Store for `@yume-chan/adb` using Web LocalStorage API.", | ||
@@ -27,7 +27,7 @@ "keywords": [ | ||
"devDependencies": { | ||
"typescript": "next", | ||
"typescript": "4.7.0-beta", | ||
"@yume-chan/ts-package-builder": "^1.0.0" | ||
}, | ||
"dependencies": { | ||
"@yume-chan/adb": "^0.0.12", | ||
"@yume-chan/adb": "^0.0.13", | ||
"tslib": "^2.3.1" | ||
@@ -34,0 +34,0 @@ }, |
// cspell: ignore RSASSA | ||
import { calculateBase64EncodedLength, calculatePublicKey, calculatePublicKeyLength, decodeBase64, encodeBase64, type AdbCredentialStore } from "@yume-chan/adb"; | ||
import { calculateBase64EncodedLength, calculatePublicKey, calculatePublicKeyLength, decodeBase64, decodeUtf8, encodeBase64, type AdbCredentialStore } from "@yume-chan/adb"; | ||
const Utf8Encoder = new TextEncoder(); | ||
const Utf8Decoder = new TextDecoder(); | ||
export function encodeUtf8(input: string): Uint8Array { | ||
return Utf8Encoder.encode(input); | ||
} | ||
export function decodeUtf8(array: Uint8Array): string { | ||
return Utf8Decoder.decode(array); | ||
} | ||
export default class AdbWebCredentialStore implements AdbCredentialStore { | ||
@@ -17,0 +6,0 @@ public readonly localStorageKey: string; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
13173
183
+ Added@yume-chan/adb@0.0.13(transitive)
+ Added@yume-chan/dataview-bigint-polyfill@0.0.13(transitive)
+ Added@yume-chan/event@0.0.13(transitive)
+ Added@yume-chan/struct@0.0.13(transitive)
- Removed@yume-chan/adb@0.0.12(transitive)
- Removed@yume-chan/dataview-bigint-polyfill@0.0.12(transitive)
- Removed@yume-chan/event@0.0.12(transitive)
- Removed@yume-chan/struct@0.0.12(transitive)
Updated@yume-chan/adb@^0.0.13