Beacon is a privacy and security-focused browser with native DANE support and a decentralized p2p light client.
- Beacon asks the SPV node for the DS record of an HNS domain.
- Performs on-device DNSSEC validation.
- Verifies certificates using DANE
This repo bundles MobileHNS from hnsquery lib to build on a simulator you need to build it from source and bundle it for iossimulator.
This branch works with Xcode 13.0, Swift 5.5 and supports iOS 13 and above.
Please note: due to dependency issues, development of Beacon-iOS is currently only supported on Intel based Macs, and not Apple Silicon based Macs.
- Install the latest Xcode developer tools from Apple.
- Install Carthage, Node, and a Python 3 virtualenv for localization scripts:
brew update brew install carthage brew install node pip3 install virtualenv
- Clone the repository:
git clone https://github.com/imperviousinc/beacon-ios
- Pull in the project dependencies:
cd beacon-ios sh ./bootstrap.sh
- Open
Client.xcodeproj
in Xcode. - Build the
Trill
scheme in Xcode.
User Scripts (JavaScript injected into the WKWebView
) are compiled, concatenated, and minified using webpack. User Scripts to be aggregated are placed in the following directories:
/Client
|-- /Frontend
|-- /UserContent
|-- /UserScripts
|-- /AllFrames
| |-- /AtDocumentEnd
| |-- /AtDocumentStart
|-- /MainFrame
|-- /AtDocumentEnd
|-- /AtDocumentStart
This reduces the total possible number of User Scripts down to four. The compiled output from concatenating and minifying the User Scripts placed in these folders resides in /Client/Assets
and are named accordingly:
AllFramesAtDocumentEnd.js
AllFramesAtDocumentStart.js
MainFrameAtDocumentEnd.js
MainFrameAtDocumentStart.js
To simplify the build process, these compiled files are checked-in to this repository. When adding or editing User Scripts, these files can be re-compiled with webpack
manually. This requires Node.js to be installed, and all required npm
packages can be installed by running npm install
in the project's root directory. User Scripts can be compiled by running the following npm
command in the root directory of the project:
npm run build
Contributions welcome!
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at https://mozilla.org/MPL/2.0/