{"id":1403,"date":"2025-06-16T16:21:32","date_gmt":"2025-06-16T15:21:32","guid":{"rendered":"https:\/\/workboot.fr\/ciela\/?page_id=1403"},"modified":"2025-06-17T10:58:06","modified_gmt":"2025-06-17T09:58:06","slug":"gpg-en-manipulations","status":"publish","type":"page","link":"https:\/\/workboot.fr\/ciela\/gpg-en-manipulations\/","title":{"rendered":"GPG chiffrement Sym\u00e9trique Partie 1"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">\ud83d\udccb Pr\u00e9requis:<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Gestions des fichiers et r\u00e9pertoires sous linux.<\/li>\n\n\n\n<li>nstallation de imagemagick ( <strong>sudo apt update &amp;&amp; sudo apt install imagemagick <\/strong>)<\/li>\n\n\n\n<li>installation gpg  ( <strong>sudo apt update &amp;&amp; sudo apt install gnupg<\/strong> )<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83c\udfaf But:<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Chiffrer des fichiers, textes , images , sons sans aucune limite !  avec un chiffrement sym\u00e8trique<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\udd10 TP GPG : Chiffrement Sym\u00e9trique &amp; Asym\u00e9trique sous Linux<\/h2>\n\n\n\n<h2 class=\"wp-block-heading\">Installation et v\u00e9rification des outils logiciels<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">v\u00e9rifier que gpg est bien install\u00e9 , ici la version 2.2.40 de GPG surement que \u00e7a aura d\u00e9j\u00e0 chang\u00e9 ! pas de panique<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>bruno@debian:~\/Works\/gpg$ gpg --version\ngpg (GnuPG) 2.2.40\nlibgcrypt 1.10.1\nCopyright (C) 2022 g10 Code GmbH\nLicense GNU GPL-3.0-or-later &lt;https:\/\/gnu.org\/licenses\/gpl.html&gt;\nThis is free software: you are free to change and redistribute it.\nThere is NO WARRANTY, to the extent permitted by law.\n\nHome: \/home\/bruno\/.gnupg\nAlgorithmes pris en charge&nbsp;:\nClef publique&nbsp;: RSA, ELG, DSA, ECDH, ECDSA, EDDSA\nChiffrement&nbsp;: IDEA, 3DES, CAST5, BLOWFISH, AES, AES192, AES256,\n              TWOFISH, CAMELLIA128, CAMELLIA192, CAMELLIA256\nHachage&nbsp;: SHA1, RIPEMD160, SHA256, SHA384, SHA512, SHA224\nCompression&nbsp;: Non compress\u00e9, ZIP, ZLIB, BZIP2\nbruno@debian:~\/Works\/gpg$ <\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">sinon <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update\nsudo apt install gnupg<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\udd38 <mark style=\"background-color:rgba(0, 0, 0, 0);color:#cf2e2e\" class=\"has-inline-color\">Partie 1 : Chiffrement Sym\u00e9trique<\/mark><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Dans un r\u00e9pertoire  GPG dans votre r\u00e9pertoire de TP Works<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\udd39 1. Cr\u00e9e un fichier texte<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Cr\u00e9er un fichier texte , que l&rsquo;on va chiffrer.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>echo \"Ceci est un secret tr\u00e8s important.\" &gt; secret.txt<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\udd39 2. Chiffrer avec une phrase de passe<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>gpg --no-symkey-cache --symmetric secret.txt\n# -c donne le m\u00eame\n# --no-symkey-cache   cela force gpg \u00e0 redemander le mot de passe \u00e0 chaque fois. <\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\ud83d\udc49 GPG vous demandera une <strong>phrase de passe<\/strong>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Par d\u00e9faut, <code>gpg-agent<\/code> <strong>met en cache<\/strong> les passphrases pour une <strong>dur\u00e9e configurable<\/strong> (souvent 10 minutes).<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">mot de passe \u00e0 retenir, un bon  mot de passe est un m\u00e9lange de lettres , majuscules , minuscules , chiffres et symboles. Eviter des mots du dictionnaire.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">un bon mot de passe  par exemple  <strong>nairoD2025<\/strong> .. si vous manquez d&rsquo;imagination , ce que je ne crois pas!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\udd393. Un fichier <code>secret.txt.gpg<\/code> est cr\u00e9\u00e9. Essayez de le lire :<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">on constate que c&rsquo;est bel et bien chiffr\u00e9 , et plus gros qu&rsquo;au d\u00e9part !<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>bruno@debian:~\/Works\/gpg$ hexdump -C secret.txt.gpg \n00000000  8c 0d 04 09 03 02 3f 53  f0 12 0b 14 7d 61 ff d2  |......?S....}a..|\n00000010  5f 01 a9 b1 e4 39 99 95  6e 89 22 76 01 ae 62 40  |_....9..n.\"v..b@|\n00000020  3e a1 59 08 43 c8 69 d4  1c 32 be 46 c4 0c 66 d6  |&gt;.Y.C.i..2.F..f.|\n00000030  1f b5 bf a7 38 86 3e f8  3f d1 a4 a1 be d1 34 de  |....8.&gt;.?.....4.|\n00000040  9c ff b1 ec 4e 85 db 03  5d 96 b0 06 a8 2a 97 7c  |....N...]....*.||\n00000050  63 3e 96 ee fc a5 70 11  37 93 8a 57 11 03 29 4a  |c&gt;....p.7..W..)J|\n00000060  44 52 33 d1 fe 65 cc d7  a4 8e bf 82 92 8b 75 a4  |DR3..e........u.|\n00000070\nbruno@debian:~\/Works\/gpg$ <\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\udd39 4. D\u00e9chiffrer<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>gpg --output secret_dechiffre.txt --decrypt secret.txt.gpg\n# l'option -o est \u00e9quivalente --output<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\udd395. Testons avec une image secr\u00e8te<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Exemple d&rsquo;un sch\u00e9ma top secret que les agents \u00e9trangers ne doivent pas voir !<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/workboot.fr\/ciela\/wp-content\/uploads\/2025\/06\/ESP32-C3-SuperMini-3.jpg\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"768\" src=\"https:\/\/workboot.fr\/ciela\/wp-content\/uploads\/2025\/06\/ESP32-C3-SuperMini-3-1024x768.jpg\" alt=\"\" class=\"wp-image-1417\" srcset=\"https:\/\/workboot.fr\/ciela\/wp-content\/uploads\/2025\/06\/ESP32-C3-SuperMini-3-1024x768.jpg 1024w, https:\/\/workboot.fr\/ciela\/wp-content\/uploads\/2025\/06\/ESP32-C3-SuperMini-3-300x225.jpg 300w, https:\/\/workboot.fr\/ciela\/wp-content\/uploads\/2025\/06\/ESP32-C3-SuperMini-3-768x576.jpg 768w, https:\/\/workboot.fr\/ciela\/wp-content\/uploads\/2025\/06\/ESP32-C3-SuperMini-3-1536x1152.jpg 1536w, https:\/\/workboot.fr\/ciela\/wp-content\/uploads\/2025\/06\/ESP32-C3-SuperMini-3.jpg 1600w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>bruno@debian:~\/Works\/gpg$ gpg -c ESP32-C3-SuperMini-3.jpg \nbruno@debian:~\/Works\/gpg$ ls -l\ntotal 520\n-rw-r--r-- 1 bruno bruno <mark style=\"background-color:rgba(0, 0, 0, 0);color:#cf2e2e\" class=\"has-inline-color\">278328<\/mark> 16 juin  18:14 ESP32-C3-SuperMini-3.jpg\n-rw-r--r-- 1 bruno bruno <mark style=\"background-color:rgba(0, 0, 0, 0);color:#cf2e2e\" class=\"has-inline-color\">235263<\/mark> 16 juin  18:15 ESP32-C3-SuperMini-3.jpg.gpg<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">on constate au passage que le chiffrement compresse  l\u00e9g\u00e8rement le fichier ! on y gagne<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Dans l\u2019algorithme de pgp ,fait un zip (c&rsquo;est pour \u00e7a que c&rsquo;est plus petit)<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">on peut interdire : gpg &#8211;compress-algo none &#8211;symmetric ESP32-C3-SuperMini-3.jpg<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Mais ce serait stupide de ne pas en profiter !<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Donc on peut tr\u00e8s bien chiffrer des fichiers images , mais aussi des sons .. etc ..il n&rsquo;y a aucune limite du moment que c&rsquo;est num\u00e9rique \ud83d\ude42<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Pour information ici c&rsquo;est surement du chiffrement AES128 ou 256 bits&#8230;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>gpg --symmetric --cipher-algo AES256 secret.txt\n# pour forcer en AES256<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">on peut savoir le type chiffrement:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>bruno@debian:~\/Works\/gpg$ gpg --list-packets ESP32-C3-SuperMini-3.jpg.gpg \ngpg: donn\u00e9es chiffr\u00e9es avec AES256.CFB<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">on voit ici que c&rsquo;est bien du AES256 !<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\ud83d\udccb Pr\u00e9requis: \ud83c\udfaf But: Chiffrer des fichiers, textes , images , sons sans aucune limite ! avec un chiffrement sym\u00e8trique \ud83d\udd10 TP GPG : Chiffrement Sym\u00e9trique &amp; Asym\u00e9trique sous Linux [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_crdt_document":"","_uag_custom_page_level_css":"","footnotes":""},"class_list":["post-1403","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>GPG chiffrement Sym\u00e9trique Partie 1 - workboot<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/workboot.fr\/ciela\/gpg-en-manipulations\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"GPG chiffrement Sym\u00e9trique Partie 1 - workboot\" \/>\n<meta property=\"og:description\" content=\"\ud83d\udccb Pr\u00e9requis: \ud83c\udfaf But: Chiffrer des fichiers, textes , images , sons sans aucune limite ! avec un chiffrement sym\u00e8trique \ud83d\udd10 TP GPG : Chiffrement Sym\u00e9trique &amp; Asym\u00e9trique sous Linux [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/workboot.fr\/ciela\/gpg-en-manipulations\/\" \/>\n<meta property=\"og:site_name\" content=\"workboot\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-17T09:58:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/workboot.fr\/ciela\/wp-content\/uploads\/2025\/06\/ESP32-C3-SuperMini-3-1024x768.jpg\" \/>\n<meta name=\"twitter:label1\" content=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/gpg-en-manipulations\\\/\",\"url\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/gpg-en-manipulations\\\/\",\"name\":\"GPG chiffrement Sym\u00e9trique Partie 1 - workboot\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/gpg-en-manipulations\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/gpg-en-manipulations\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/ESP32-C3-SuperMini-3-1024x768.jpg\",\"datePublished\":\"2025-06-16T15:21:32+00:00\",\"dateModified\":\"2025-06-17T09:58:06+00:00\",\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/workboot.fr\\\/ciela\\\/gpg-en-manipulations\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/gpg-en-manipulations\\\/#primaryimage\",\"url\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/ESP32-C3-SuperMini-3.jpg\",\"contentUrl\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/ESP32-C3-SuperMini-3.jpg\",\"width\":1600,\"height\":1200},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/#website\",\"url\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/\",\"name\":\"workboot\",\"description\":\"Open Source, Open Minds \",\"publisher\":{\"@id\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/#organization\",\"name\":\"workboot\",\"url\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/logo_ciel-dorian-1.png\",\"contentUrl\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/logo_ciel-dorian-1.png\",\"width\":1024,\"height\":950,\"caption\":\"workboot\"},\"image\":{\"@id\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"GPG chiffrement Sym\u00e9trique Partie 1 - workboot","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/workboot.fr\/ciela\/gpg-en-manipulations\/","og_locale":"fr_FR","og_type":"article","og_title":"GPG chiffrement Sym\u00e9trique Partie 1 - workboot","og_description":"\ud83d\udccb Pr\u00e9requis: \ud83c\udfaf But: Chiffrer des fichiers, textes , images , sons sans aucune limite ! avec un chiffrement sym\u00e8trique \ud83d\udd10 TP GPG : Chiffrement Sym\u00e9trique &amp; Asym\u00e9trique sous Linux [&hellip;]","og_url":"https:\/\/workboot.fr\/ciela\/gpg-en-manipulations\/","og_site_name":"workboot","article_modified_time":"2025-06-17T09:58:06+00:00","og_image":[{"url":"https:\/\/workboot.fr\/ciela\/wp-content\/uploads\/2025\/06\/ESP32-C3-SuperMini-3-1024x768.jpg","type":"","width":"","height":""}],"twitter_misc":{"Dur\u00e9e de lecture estim\u00e9e":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/workboot.fr\/ciela\/gpg-en-manipulations\/","url":"https:\/\/workboot.fr\/ciela\/gpg-en-manipulations\/","name":"GPG chiffrement Sym\u00e9trique Partie 1 - workboot","isPartOf":{"@id":"https:\/\/workboot.fr\/ciela\/#website"},"primaryImageOfPage":{"@id":"https:\/\/workboot.fr\/ciela\/gpg-en-manipulations\/#primaryimage"},"image":{"@id":"https:\/\/workboot.fr\/ciela\/gpg-en-manipulations\/#primaryimage"},"thumbnailUrl":"https:\/\/workboot.fr\/ciela\/wp-content\/uploads\/2025\/06\/ESP32-C3-SuperMini-3-1024x768.jpg","datePublished":"2025-06-16T15:21:32+00:00","dateModified":"2025-06-17T09:58:06+00:00","inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/workboot.fr\/ciela\/gpg-en-manipulations\/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/workboot.fr\/ciela\/gpg-en-manipulations\/#primaryimage","url":"https:\/\/workboot.fr\/ciela\/wp-content\/uploads\/2025\/06\/ESP32-C3-SuperMini-3.jpg","contentUrl":"https:\/\/workboot.fr\/ciela\/wp-content\/uploads\/2025\/06\/ESP32-C3-SuperMini-3.jpg","width":1600,"height":1200},{"@type":"WebSite","@id":"https:\/\/workboot.fr\/ciela\/#website","url":"https:\/\/workboot.fr\/ciela\/","name":"workboot","description":"Open Source, Open Minds ","publisher":{"@id":"https:\/\/workboot.fr\/ciela\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/workboot.fr\/ciela\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/workboot.fr\/ciela\/#organization","name":"workboot","url":"https:\/\/workboot.fr\/ciela\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/workboot.fr\/ciela\/#\/schema\/logo\/image\/","url":"https:\/\/workboot.fr\/ciela\/wp-content\/uploads\/2025\/05\/logo_ciel-dorian-1.png","contentUrl":"https:\/\/workboot.fr\/ciela\/wp-content\/uploads\/2025\/05\/logo_ciel-dorian-1.png","width":1024,"height":950,"caption":"workboot"},"image":{"@id":"https:\/\/workboot.fr\/ciela\/#\/schema\/logo\/image\/"}}]}},"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false},"uagb_author_info":{"display_name":"admin","author_link":"https:\/\/workboot.fr\/ciela\/author\/admin\/"},"uagb_comment_info":0,"uagb_excerpt":"\ud83d\udccb Pr\u00e9requis: \ud83c\udfaf But: Chiffrer des fichiers, textes , images , sons sans aucune limite ! avec un chiffrement sym\u00e8trique \ud83d\udd10 TP GPG : Chiffrement Sym\u00e9trique &amp; Asym\u00e9trique sous Linux [&hellip;]","_links":{"self":[{"href":"https:\/\/workboot.fr\/ciela\/wp-json\/wp\/v2\/pages\/1403","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/workboot.fr\/ciela\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/workboot.fr\/ciela\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/workboot.fr\/ciela\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/workboot.fr\/ciela\/wp-json\/wp\/v2\/comments?post=1403"}],"version-history":[{"count":20,"href":"https:\/\/workboot.fr\/ciela\/wp-json\/wp\/v2\/pages\/1403\/revisions"}],"predecessor-version":[{"id":1450,"href":"https:\/\/workboot.fr\/ciela\/wp-json\/wp\/v2\/pages\/1403\/revisions\/1450"}],"wp:attachment":[{"href":"https:\/\/workboot.fr\/ciela\/wp-json\/wp\/v2\/media?parent=1403"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}