Skip to main content

WELCOME TO OUR NEW SITE! RETURNING USERS PLEASE RESET PASSWORD HERE.

~*~

Thank you for shopping independent, queer, and feminist! Most orders are processed within 48 hours and ship/are available for pickup within 1-7 business days. 

Our website reflects what is available to order, NOT what is on our shelves. 

To check in stock availability or if you have other questions, please call the store at (404) 524-0304

Modern: Csv License Key

"version": "1.0", "issued_at": "2026-04-16T10:00:00Z", "expires_at": "2027-04-16T10:00:00Z", "features": ["PRO", "API_ACCESS", "AUDIT_LOG"], "seats": 5, "node_lock": email_domain, "licensee": "Acme Corp", "metadata": "sales_order": "SO-4421"

# 2. Derive per-license encryption key hkdf = HKDF(algorithm=hashes.SHA256(), length=32, salt=None, info=b"license-v2") enc_key = hkdf.derive(product_master_key + claims['license_id'].encode()) modern csv license key

# 3. Encrypt aesgcm = AESGCM(enc_key) nonce = os.urandom(12) ciphertext = aesgcm.encrypt(nonce, claims_json, None) payload = base64url_encode(nonce + ciphertext) "version": "1

# Decrypt enc_key = HKDF(...).derive(master_key + lic_id.encode()) raw = base64url_decode(payload_b64) nonce, ciphertext = raw[:12], raw[12:] claims_json = AESGCM(enc_key).decrypt(nonce, ciphertext, None) claims = json.loads(claims_json) "licensee": "Acme Corp"