|
|
|
@ -1,17 +1,20 @@ |
|
|
|
# -*- coding: utf-8 -*- |
|
|
|
|
|
|
|
import tkinter as tk |
|
|
|
from Interface import Interface |
|
|
|
import os |
|
|
|
|
|
|
|
|
|
|
|
class InterfaceServeur(tk.Tk): |
|
|
|
|
|
|
|
def __init__(self): |
|
|
|
|
|
|
|
tk.Tk.__init__(self) |
|
|
|
Interface.__init__(self, "serveur") |
|
|
|
self.n = 870567544966633301 |
|
|
|
self.e = 42205 |
|
|
|
self.d = 769020235650503533 |
|
|
|
|
|
|
|
self.title("Serveur sécurisé") |
|
|
|
self.geometry("400x300") |
|
|
|
self.geometry("600x500") |
|
|
|
self.configure(bg="#1e1e2f") |
|
|
|
titre = tk.Label(self,text="🐱 SERVEUR RSA 🐱",font=("Arial", 20, "bold"),bg="#1e1e2f",fg="white") |
|
|
|
titre.pack(pady=20) |
|
|
|
|