Onionr/static-data/www/shared/useridenticons.js

28 lines
1007 B
JavaScript
Raw Normal View History

2019-09-21 05:07:21 +00:00
function toHexString(byteArray) {
// cc-by-sa-4 https://stackoverflow.com/a/44608819 by https://stackoverflow.com/users/1883624/grantpatterson
var s = '0x';
byteArray.forEach(function(byte) {
s += ('0' + (byte & 0xFF).toString(16)).slice(-2);
});
return s;
}
2019-09-27 23:04:49 +00:00
async function sha256(str) {
const buf = await crypto.subtle.digest("SHA-256", new TextEncoder("utf-8").encode(str));
return Array.prototype.map.call(new Uint8Array(buf), x=>(('00'+x.toString(16)).slice(-2))).join('');
}
async function userIcon(pubkey, imgSize=64){
pubkey = await sha256(base32.decode.asBytes(pubkey))
2019-09-21 05:07:21 +00:00
let options = {
//foreground: [0,0,0,1], // rgba black
2019-10-04 21:49:35 +00:00
background: [0, 0, 0, 0], // rgba white
2019-09-21 05:07:21 +00:00
//margin: 0.1,
size: imgSize,
format: 'svg' // use SVG instead of PNG
};
// create a base64 encoded SVG
let data = new Identicon(pubkey, options).toString();
return data
}