forked from minio/minio-py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsse.py
More file actions
110 lines (87 loc) · 3.1 KB
/
Copy pathsse.py
File metadata and controls
110 lines (87 loc) · 3.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# -*- coding: utf-8 -*-
# MinIO Python Library for Amazon S3 Compatible Cloud Storage, (C) 2018 MinIO, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
minio.sse
~~~~~~~~~~~~~~~~~~~
This module contains core API parsers.
:copyright: (c) 2018 by MinIO, Inc.
:license: Apache 2.0, see LICENSE for more details.
"""
import base64
import hashlib
import json
from .error import (InvalidArgumentError, InvalidSizeError)
class SSE_C(object):
def __init__(self, key):
self.key = key
if len(self.key) != 32:
raise InvalidSizeError("SSE-C keys need to be 256 bit base64 encoded")
def type(self):
return "SSE-C"
def marshal(self):
b64key = base64.b64encode(self.key)
md5 = hashlib.md5()
md5.update(self.key)
md5_key = base64.b64encode(md5.digest()).decode()
keys = {
"X-Amz-Server-Side-Encryption-Customer-Algorithm": "AES256",
"X-Amz-Server-Side-Encryption-Customer-Key": b64key.decode(),
"X-Amz-Server-Side-Encryption-Customer-Key-MD5": md5_key
}
return keys
class copy_SSE_C(object):
def __init__(self, key):
self.key = key
if len(self.key) != 32:
raise InvalidArgumentError("Length of Customer key must be 32 Bytes")
def type(self):
return "copy_SSE-C"
def marshal(self):
b64key = base64.b64encode(self.key)
md5 = hashlib.md5()
md5.update(self.key)
md5_key = base64.b64encode(md5.digest()).decode()
keys = {
"X-Amz-Copy-Source-Server-Side-Encryption-Customer-Algorithm":"AES256",
"X-Amz-Copy-Source-Server-Side-Encryption-Customer-Key": b64key.decode(),
"X-Amz-Copy-Source-Server-Side-Encryption-Customer-Key-MD5": md5_key
}
return keys
class SSE_KMS(object):
def __init__(self, key, context):
self.key = key
self.context = context
def type(self):
return "SSE-KMS"
def marshal(self):
keys = {
"X-Amz-Server-Side-Encryption-Aws-Kms-Key-Id": self.key,
"X-Amz-Server-Side-Encryption":"aws:kms"
}
if self.context:
ctx_str = json.dumps(self.context)
ctx_str = bytes(ctx_str, 'utf-8')
b64key = base64.b64encode(ctx_str)
header = {"X-Amz-Server-Side-Encryption-Context": b64key.decode()}
keys.update(header)
return keys
class SSE_S3(object):
def type(self):
return "SSE-S3"
def marshal(self):
keys = {
"X-Amz-Server-Side-Encryption":"AES256"
}
return keys