mirror of
https://github.com/amark/gun.git
synced 2025-06-14 10:06:41 +00:00
17 lines
427 B
JavaScript
17 lines
427 B
JavaScript
|
|
/*
|
|
Security, Encryption, and Authorization: SEA.js
|
|
*/
|
|
|
|
// NECESSARY PRE-REQUISITE: http://gun.js.org/explainers/data/security.html
|
|
|
|
/* THIS IS AN EARLY ALPHA!!! */
|
|
|
|
if(typeof window !== 'undefined'){
|
|
if(location.protocol.indexOf('s') < 0
|
|
&& location.host.indexOf('localhost') < 0
|
|
&& location.protocol.indexOf('file:') < 0){
|
|
location.protocol = 'https:';
|
|
}
|
|
}
|
|
|