forked from parallaxsecond/rust-cryptoki
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdecryption.rs
More file actions
143 lines (121 loc) · 4.19 KB
/
decryption.rs
File metadata and controls
143 lines (121 loc) · 4.19 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
// Copyright 2021 Contributors to the Parsec project.
// SPDX-License-Identifier: Apache-2.0
//! Decrypting data
use crate::context::Function;
use crate::error::{Result, Rv};
use crate::mechanism::Mechanism;
use crate::object::ObjectHandle;
use crate::session::Session;
use cryptoki_sys::*;
use std::convert::TryInto;
impl Session<'_> {
/// Single-part decryption operation
pub fn decrypt(
&self,
mechanism: &Mechanism,
key: ObjectHandle,
encrypted_data: &[u8],
) -> Result<Vec<u8>> {
let mut mechanism: CK_MECHANISM = mechanism.into();
let mut data_len = 0;
unsafe {
Rv::from(get_pkcs11!(self.client(), C_DecryptInit)(
self.handle(),
&mut mechanism as CK_MECHANISM_PTR,
key.handle(),
))
.into_result(Function::DecryptInit)?;
}
// Get the output buffer length
unsafe {
Rv::from(get_pkcs11!(self.client(), C_Decrypt)(
self.handle(),
// C_Decrypt should not modify this buffer
encrypted_data.as_ptr() as *mut u8,
encrypted_data.len().try_into()?,
std::ptr::null_mut(),
&mut data_len,
))
.into_result(Function::Decrypt)?;
}
let mut data = vec![0; data_len.try_into()?];
unsafe {
Rv::from(get_pkcs11!(self.client(), C_Decrypt)(
self.handle(),
encrypted_data.as_ptr() as *mut u8,
encrypted_data.len().try_into()?,
data.as_mut_ptr(),
&mut data_len,
))
.into_result(Function::Decrypt)?;
}
data.truncate(data_len.try_into()?);
Ok(data)
}
/// Starts new multi-part decryption operation
pub fn decrypt_init(&self, mechanism: &Mechanism, key: ObjectHandle) -> Result<()> {
let mut mechanism: CK_MECHANISM = mechanism.into();
unsafe {
Rv::from(get_pkcs11!(self.client(), C_DecryptInit)(
self.handle(),
&mut mechanism as CK_MECHANISM_PTR,
key.handle(),
))
.into_result(Function::DecryptInit)?;
}
Ok(())
}
/// Continues an ongoing multi-part decryption operation,
/// taking in the next part of the encrypted data and returning its decryption
pub fn decrypt_update(&self, encrypted_data: &[u8]) -> Result<Vec<u8>> {
let mut data_len = 0;
// Get the output buffer length
unsafe {
Rv::from(get_pkcs11!(self.client(), C_DecryptUpdate)(
self.handle(),
encrypted_data.as_ptr() as *mut u8,
encrypted_data.len().try_into()?,
std::ptr::null_mut(),
&mut data_len,
))
.into_result(Function::DecryptUpdate)?;
}
let mut data = vec![0; data_len.try_into()?];
unsafe {
Rv::from(get_pkcs11!(self.client(), C_DecryptUpdate)(
self.handle(),
encrypted_data.as_ptr() as *mut u8,
encrypted_data.len().try_into()?,
data.as_mut_ptr(),
&mut data_len,
))
.into_result(Function::DecryptUpdate)?;
}
Ok(data)
}
/// Finalizes ongoing multi-part decryption operation,
/// returning any remaining bytes in the decrypted data
pub fn decrypt_final(&self) -> Result<Vec<u8>> {
let mut data_len = 0;
// Get the output buffer length
unsafe {
Rv::from(get_pkcs11!(self.client(), C_DecryptFinal)(
self.handle(),
std::ptr::null_mut(),
&mut data_len,
))
.into_result(Function::DecryptFinal)?;
}
let mut data = vec![0; data_len.try_into()?];
unsafe {
Rv::from(get_pkcs11!(self.client(), C_DecryptFinal)(
self.handle(),
data.as_mut_ptr(),
&mut data_len,
))
.into_result(Function::DecryptFinal)?;
}
data.truncate(data_len.try_into()?);
Ok(data)
}
}