@@ -73,7 +73,7 @@ public function getFingerPrint(?string $publicKey = null): string
73
73
/**
74
74
* Direct encryption is not supported with EC keys.
75
75
* Use AES encryption with key derivation for data encryption.
76
- *
76
+ *
77
77
* @deprecated EC keys do not support direct encryption. Use hybrid encryption instead.
78
78
* @throws NotImplementedException
79
79
*/
@@ -88,7 +88,7 @@ public function encrypt(string $plainText): string
88
88
/**
89
89
* Direct decryption is not supported with EC keys.
90
90
* Use AES decryption with key derivation for data decryption.
91
- *
91
+ *
92
92
* @deprecated EC keys do not support direct decryption. Use hybrid encryption instead.
93
93
* @throws NotImplementedException
94
94
*/
@@ -103,7 +103,7 @@ public function decrypt(string $encryptedText, string $privateKeyPass, string $s
103
103
/**
104
104
* Private encryption is not supported with EC keys.
105
105
* EC keys are designed for signatures, not encryption.
106
- *
106
+ *
107
107
* @deprecated EC keys do not support encryption operations. Use sign() instead.
108
108
* @throws NotImplementedException
109
109
*/
@@ -118,7 +118,7 @@ public function privateEncrypt(string $plainText, string $privateKeyPass, string
118
118
/**
119
119
* Public decryption is not supported with EC keys.
120
120
* EC keys are designed for signatures, not encryption.
121
- *
121
+ *
122
122
* @deprecated EC keys do not support decryption operations. Use verify() instead.
123
123
* @throws NotImplementedException
124
124
*/
@@ -129,4 +129,4 @@ public function publicDecrypt(string $encryptedText): string
129
129
'EC keys are designed for digital signatures. Use verify() method instead. '
130
130
);
131
131
}
132
- }
132
+ }
0 commit comments