-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcons.py
More file actions
19 lines (15 loc) · 692 Bytes
/
cons.py
File metadata and controls
19 lines (15 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# global variables :
# Certification :
dest_req = '/home/hime_chan/PycharmProjects/SecureChat/Certif/Client/requests'
dest_key_cert = '/home/hime_chan/PycharmProjects/SecureChat/Certif/Client/private_keys'
dest_client_cert = '/home/hime_chan/PycharmProjects/SecureChat/Certif/CA/clients_cert'
dest_ca = "/home/hime_chan/PycharmProjects/SecureChat/Certif/CA/"
# LDAP
LDAP_HOST = "ldap://localhost:389"
ADMIN_PWD = "admin"
BASE_DN="dc=gl42022,dc=insat"
ADMIN_DN = "cn=admin,dc=gl42022,dc=insat"
USERS_DN="ou=security,dc=gl42022,dc=insat"
# RSA
PUB_KEYS = "/home/hime_chan/PycharmProjects/SecureChat/RSA/public_keys/"
PRV_KEYS = "/home/hime_chan/PycharmProjects/SecureChat/RSA/private_keys/"