89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
while (bigInt) {
result.push(bigInt & 0xff);
bigInt = bigInt >> 8;
}
result.reverse();
break;
case "object":
result = Array.from(new Uint8Array(bigInt.toByteArray()));
break;
}
result = cackeySSHAgentEncodeLV(result);
return(result);
}
|
>
|
>
>
>
|
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()));
} else {
result = Array.from(bigInt);
}
break;
}
result = cackeySSHAgentEncodeLV(result);
return(result);
}
|