Can cloudfront signed url be generated from signed cookie data?
I have a signed url that downloads private content
Signed URL works fine.
Now, I'm trying to generate a signed cookie way of exposing private content so I had the following cookies added to my response object (in Spring/JAVA):
Cookie expiresCookie = new Cookie("CloudFront-Expires", "1510111000");
Cookie signatureCookie = new Cookie("CloudFront-Signature", "someRandomSignature");
Cookie keyPairCookie = new Cookie("CloudFront-Key-Pair-Id", "MY-KEY-PAIR");
Once the client gets these cookies, can't it (the client) generate the signed url and share the url to parties that shouldn't access it?
