- ;Pour crypter un texte utilisons la commandes $encode
-
- ;----- alias du cryptage---------------
-
- alias cryptage {
- set %motacrypter $$?="Entre la phrase a crypter"
- say $encode(%motacrypter)
- }
-
- ;Pour décrypter un texte utilisons la commandes $decode
-
- ;--------alias du decryptage-----------------
-
- alias decryptage {
- set %motacrypter $$?="Entre la phrase a crypter"
- say $decode(%motacrypter)
- }
-
- ;-------menu channel----------------
-
- menu channel {
- Crypter un texte:/cryptage
- Décrypter un texte:/decryptage
- }
;Pour crypter un texte utilisons la commandes $encode
;----- alias du cryptage---------------
alias cryptage {
set %motacrypter $$?="Entre la phrase a crypter"
say $encode(%motacrypter)
}
;Pour décrypter un texte utilisons la commandes $decode
;--------alias du decryptage-----------------
alias decryptage {
set %motacrypter $$?="Entre la phrase a crypter"
say $decode(%motacrypter)
}
;-------menu channel----------------
menu channel {
Crypter un texte:/cryptage
Décrypter un texte:/decryptage
}