2024-03-08 14:32:05 +00:00
|
|
|
(define-module (buer files substitute-keys)
|
|
|
|
#:use-module (gnu)
|
2024-03-13 18:51:37 +00:00
|
|
|
#:export (berlin.pub
|
|
|
|
yuria.pub
|
2024-03-08 14:32:05 +00:00
|
|
|
yumiko.pub))
|
|
|
|
|
|
|
|
(define yuria.pub
|
|
|
|
(plain-file "yuria.pub"
|
|
|
|
"(public-key
|
|
|
|
(ecc
|
|
|
|
(curve Ed25519)
|
|
|
|
(q #D5D0C1203D294B410DA106DDC1713B74CBB27353D53F4EE3D9D26972E8687424#)
|
|
|
|
)
|
|
|
|
)"))
|
|
|
|
|
|
|
|
(define yumiko.pub
|
|
|
|
(plain-file "yumiko.pub"
|
|
|
|
"(public-key
|
|
|
|
(ecc
|
|
|
|
(curve Ed25519)
|
|
|
|
(q #EBD4DD318A84F9F0AD13300D8A2ACF022F16088DA59B57E539F6DC3BD9C33A52#)
|
|
|
|
)
|
|
|
|
)"))
|
2024-03-13 18:51:37 +00:00
|
|
|
|
|
|
|
(define berlin.pub
|
|
|
|
(plain-file "berlin.pub"
|
|
|
|
"(public-key
|
|
|
|
(ecc
|
|
|
|
(curve Ed25519)
|
|
|
|
(q #8D156F295D24B0D9A86FA5741A840FF2D24F60F7B6C4134814AD55625971B394#)
|
|
|
|
)
|
|
|
|
)"))
|