Fully end to end encrypted anonymous chat program. Server only stores public key lookup for users and the encrypted messages. No credentials are transfered to the server, but kept in local browser storage. This allows 100% safe chatting.
https://safechat.ch
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.4 KiB
31 lines
1.4 KiB
9 years ago
|
CREATE TABLE IF NOT EXISTS `user` (
|
||
|
`name` varchar(50) NOT NULL UNIQUE COMMENT 'unique name of the user',
|
||
|
`pubkey` text NOT NULL COMMENT 'armored gnupg public key of the user',
|
||
|
PRIMARY KEY (`name`)
|
||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='list of all registered users and their public keys';
|
||
|
create table if not exists `message` (
|
||
|
`id`
|
||
|
int not null auto_increment
|
||
|
comment "id of the message, it is used in the client to check if a message has already been downloaded or not",
|
||
|
`time`
|
||
|
timestamp default current_timestamp
|
||
|
comment "time when the message has been stored on the server",
|
||
|
`user`
|
||
|
varchar(50) not null
|
||
|
comment "name of the user that sent the message",
|
||
|
`msg`
|
||
|
longtext not null
|
||
|
comment "message content, must be armored gnupg encrypted format",
|
||
|
primary key (id),
|
||
|
foreign key (user)
|
||
|
references user(name)
|
||
|
on delete cascade
|
||
|
on update cascade
|
||
|
) character set utf8 engine=innodb
|
||
|
comment="table to hold all messages for later download by the receiver";
|
||
|
create table if not exists options (
|
||
|
name varchar(50) not null unique comment "option name",
|
||
|
value text not null comment "option value",
|
||
|
primary key (name)
|
||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 comment="table for system settings";
|