remove all default keys (#1485)

This change:
- Generates a new BitTorrent pepper by default
- Generates a new pagination key by default
- Changes the pagination key format to base64
- Removes selfsigned JWT certs
- Moves test keys to test/data
This commit is contained in:
Jimmy Zelinskie 2016-05-23 16:00:48 -04:00
parent 20dcb2053e
commit 5568cc77b8
7 changed files with 15 additions and 8 deletions

View file

@ -70,6 +70,8 @@ class TestConfig(DefaultConfig):
SIGNING_ENGINE = 'gpg2'
GPG2_PRIVATE_KEY_NAME = 'EEB32221'
GPG2_PRIVATE_KEY_FILENAME = '/test/signing-private.gpg'
GPG2_PUBLIC_KEY_FILENAME = '/test/signing-public.gpg'
GPG2_PRIVATE_KEY_FILENAME = '/test/data/signing-private.gpg'
GPG2_PUBLIC_KEY_FILENAME = '/test/data/signing-public.gpg'
JWT_AUTH_CERTIFICATE_PATH = 'test/data/registry_v2_auth.crt'
JWT_AUTH_PRIVATE_KEY_PATH = 'test/data/registry_v2_auth_private.key'