Home Reference Source

src/utils/keysystem-util.ts

  1. import { base64Decode } from './numeric-encoding-utils';
  2.  
  3. function getKeyIdBytes(str: string): Uint8Array {
  4. const keyIdbytes = strToUtf8array(str).subarray(0, 16);
  5. const paddedkeyIdbytes = new Uint8Array(16);
  6. paddedkeyIdbytes.set(keyIdbytes, 16 - keyIdbytes.length);
  7. return paddedkeyIdbytes;
  8. }
  9.  
  10. export function changeEndianness(keyId: Uint8Array) {
  11. const swap = function (array: Uint8Array, from: number, to: number) {
  12. const cur = array[from];
  13. array[from] = array[to];
  14. array[to] = cur;
  15. };
  16.  
  17. swap(keyId, 0, 3);
  18. swap(keyId, 1, 2);
  19. swap(keyId, 4, 5);
  20. swap(keyId, 6, 7);
  21. }
  22.  
  23. export function convertDataUriToArrayBytes(uri: string): Uint8Array | null {
  24. // data:[<media type][;attribute=value][;base64],<data>
  25. const colonsplit = uri.split(':');
  26. let keydata: Uint8Array | null = null;
  27. if (colonsplit[0] === 'data' && colonsplit.length === 2) {
  28. const semicolonsplit = colonsplit[1].split(';');
  29. const commasplit = semicolonsplit[semicolonsplit.length - 1].split(',');
  30. if (commasplit.length === 2) {
  31. const isbase64 = commasplit[0] === 'base64';
  32. const data = commasplit[1];
  33. if (isbase64) {
  34. semicolonsplit.splice(-1, 1); // remove from processing
  35. keydata = base64Decode(data);
  36. } else {
  37. keydata = getKeyIdBytes(data);
  38. }
  39. }
  40. }
  41. return keydata;
  42. }
  43.  
  44. export function strToUtf8array(str: string): Uint8Array {
  45. return Uint8Array.from(unescape(encodeURIComponent(str)), (c) =>
  46. c.charCodeAt(0)
  47. );
  48. }