Checked in encrypted versions of my download lists
This commit is contained in:
parent
5f61808f55
commit
8b46391c6c
3
.gitignore
vendored
3
.gitignore
vendored
@ -3,3 +3,6 @@
|
|||||||
/linklist-*
|
/linklist-*
|
||||||
/alreadydownloaded*.txt
|
/alreadydownloaded*.txt
|
||||||
/once.yaml
|
/once.yaml
|
||||||
|
|
||||||
|
# Explicitly allow encrypted versions of my lists
|
||||||
|
!/*.crypt
|
||||||
|
6
decrypt-my-lists.sh
Normal file
6
decrypt-my-lists.sh
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# I want to version-control my lists, but i don't want them to be visible in case I ever decide to publicize this repository.
|
||||||
|
# So.... I guess I'll just check in encrypted versions, lol.
|
||||||
|
|
||||||
|
openssl enc -d -aes-256-cbc -pbkdf2 -in linklist-videos.yaml.crypt -out linklist-videos.yaml
|
||||||
|
openssl enc -d -aes-256-cbc -pbkdf2 -in linklist-music.yaml.crypt -out linklist-music.yaml
|
BIN
linklist-music.yaml.crypt
Normal file
BIN
linklist-music.yaml.crypt
Normal file
Binary file not shown.
BIN
linklist-videos.yaml.crypt
Normal file
BIN
linklist-videos.yaml.crypt
Normal file
Binary file not shown.
6
update-my-lists-crypt.sh
Normal file
6
update-my-lists-crypt.sh
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# I want to version-control my lists, but i don't want them to be visible in case I ever decide to publicize this repository.
|
||||||
|
# So.... I guess I'll just check in encrypted versions, lol.
|
||||||
|
|
||||||
|
openssl enc -aes-256-cbc -pbkdf2 -in linklist-videos.yaml -out linklist-videos.yaml.crypt
|
||||||
|
openssl enc -aes-256-cbc -pbkdf2 -in linklist-music.yaml -out linklist-music.yaml.crypt
|
Loading…
x
Reference in New Issue
Block a user