Diff

Differences From Artifact [393672b6c1]:

To Artifact [0d0e90bbfd]:


89
90
91
92
93
94
95

96




97
98
99
100
101
102
103
89
90
91
92
93
94
95
96

97
98
99
100
101
102
103
104
105
106
107







+
-
+
+
+
+







			while (bigInt) {
				result.push(bigInt & 0xff);
				bigInt = bigInt >> 8;
			}
			result.reverse();
			break;
		case "object":
			if (bigInt.toByteArray) {
			result = Array.from(new Uint8Array(bigInt.toByteArray()));
				result = Array.from(new Uint8Array(bigInt.toByteArray()));
			} else {
				result = Array.from(bigInt);
			}
			break;
	}

	result = cackeySSHAgentEncodeLV(result);

	return(result);
}