├── backup.php ├── decrypt.php ├── encrypt.php ├── key.php ├── markup.html ├── plain-decrypt.php ├── plain-encrypt.php ├── qa.php └── string.php /backup.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Document 10 | 11 | 17 | 18 | 19 | 20 |
21 |
22 |
23 |

Generate Keys

24 |

generate Random String Key

25 |
26 |
27 |
28 |
29 |
30 |
31 | 32 | 33 | 34 |
35 |
36 |
37 | 38 |
39 |
40 |

Ostad PHP & Laravel Course 41 |

42 | 43 |
44 | 45 |
46 |
47 |
48 |
49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /markup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Document 10 | 11 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |

Generate Keys

21 |

generate Random String Key

22 |
23 |
24 |
25 | 26 |
27 |
28 |
29 | 30 | 31 | 32 |
33 |
34 |
35 | 36 |
37 | 38 |
39 |

Ostad PHP & Laravel Course 40 |

41 | 42 |
43 | 44 | 45 |
46 |
47 |
48 |
49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /plain-decrypt.php: -------------------------------------------------------------------------------- 1 |