Skip to content

Commit f0f2fe0

Browse files
committed
Update readme with e2e encryption
1 parent fd8e29d commit f0f2fe0

3 files changed

Lines changed: 42 additions & 8 deletions

File tree

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,12 @@ works best for you:
6060

6161
## Features
6262

63+
### End-to-end Encryption
64+
65+
You can encrypt your messages end-to-end ysubg the military grade [AES-256 encryption](https://en.wikipedia.org/wiki/Advanced_Encryption_Standard)
66+
algorithm. Your encryption key is stored only on our mobile phone so the even the server won't have any way to view the
67+
content of your SMS messages which are sent and received on your Android phone.
68+
6369
### Webhook
6470

6571
If you want to build advanced integrations, we support webhooks. The httpSMS platform can forward SMS messages received
Lines changed: 1 addition & 0 deletions
Loading

web/pages/index.vue

Lines changed: 35 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<v-row :class="{ 'py-16': $vuetify.breakpoint.lgAndUp }">
55
<v-col
66
cols="12"
7-
md="4"
7+
md="6"
88
:class="{
99
'text-center pt-16': $vuetify.breakpoint.mdAndDown,
1010
'py-16': $vuetify.breakpoint.lgAndUp,
@@ -22,7 +22,7 @@
2222
</h1>
2323
<h2 class="text--secondary text-h5 mt-8 mb-8">
2424
Use your android phone to send and receive SMS messages using a
25-
simple HTTP API.
25+
simple programmable API with end-to-end encryption.
2626
</h2>
2727
<div :class="{ 'text-center': $vuetify.breakpoint.mdAndDown }">
2828
<v-btn
@@ -75,7 +75,7 @@
7575
<v-col
7676
v-if="$vuetify.breakpoint.mdAndUp"
7777
cols="12"
78-
md="8"
78+
md="6"
7979
class="py-16"
8080
>
8181
<v-img
@@ -129,7 +129,7 @@
129129
></v-img>
130130
</v-col>
131131
</v-row>
132-
<v-row class="mb-16">
132+
<v-row class="mb-16 mt-16">
133133
<v-col cols="12" md="6" class="d-flex align-center" :order-lg="1">
134134
<div>
135135
<h3 class="text-h3 mb-1">
@@ -162,7 +162,7 @@
162162
></v-img>
163163
</v-col>
164164
</v-row>
165-
<v-row class="mb-16">
165+
<v-row class="mb-16 mt-16">
166166
<v-col cols="12" md="6" class="d-flex align-center" :order-lg="2">
167167
<div>
168168
<h3 class="text-h3 mb-1">Webhooks</h3>
@@ -183,7 +183,7 @@
183183
></v-img>
184184
</v-col>
185185
</v-row>
186-
<v-row class="mb-16">
186+
<v-row class="mb-16 mt-16">
187187
<v-col cols="12" md="6" class="d-flex align-center" :order-lg="1">
188188
<div>
189189
<h3 class="text-h3 mb-1">Control Sending</h3>
@@ -203,7 +203,7 @@
203203
></v-img>
204204
</v-col>
205205
</v-row>
206-
<v-row class="mb-16">
206+
<v-row class="mb-16 mt-16">
207207
<v-col cols="12" md="6" class="d-flex align-center" :order-lg="2">
208208
<div>
209209
<h3 class="text-h3 mb-1">Monitoring</h3>
@@ -222,7 +222,7 @@
222222
></v-img>
223223
</v-col>
224224
</v-row>
225-
<v-row class="mt-16">
225+
<v-row class="mt-16 mb-16">
226226
<v-col cols="12" md="6" class="d-flex align-center" :order-lg="1">
227227
<div>
228228
<h3 class="text-h3 mb-1">Open Source</h3>
@@ -251,6 +251,33 @@
251251
></v-img>
252252
</v-col>
253253
</v-row>
254+
<v-row class="mt-16">
255+
<v-col cols="12" md="6" class="d-flex align-center" :order-lg="2">
256+
<div>
257+
<h3 class="text-h3 mb-1">Encryption 🔐</h3>
258+
<h5 class="text-h6 mb-3 font-weight-light">
259+
You can encrypt your messages end-to-end using the military
260+
grade
261+
<a
262+
href="https://en.wikipedia.org/wiki/Advanced_Encryption_Standard"
263+
>AES-256 encryption</a
264+
>
265+
algorithm. Your encryption key is stored only on our mobile
266+
phone so our servers won't have any way to view the content of
267+
your SMS messages which are sent and received on your Android
268+
phone.
269+
</h5>
270+
</div>
271+
</v-col>
272+
<v-col cols="12" md="6" :order-lg="1">
273+
<v-img
274+
class="mb-4"
275+
max-height="300"
276+
contain
277+
:src="require('assets/img/mobile-encryption.svg')"
278+
></v-img>
279+
</v-col>
280+
</v-row>
254281
</v-container>
255282
</v-sheet>
256283
<v-container class="pb-16">

0 commit comments

Comments
 (0)