Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
onlyoffice_core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
onlyoffice_core
Commits
48587f55
Commit
48587f55
authored
Jun 16, 2017
by
Oleg Korshul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
a505ae39
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
DesktopEditor/xmlsec/src/include/XmlCertificate.h
DesktopEditor/xmlsec/src/include/XmlCertificate.h
+10
-0
DesktopEditor/xmlsec/src/src/XmlCertificate.cpp
DesktopEditor/xmlsec/src/src/XmlCertificate.cpp
+1
-0
No files found.
DesktopEditor/xmlsec/src/include/XmlCertificate.h
View file @
48587f55
...
...
@@ -46,6 +46,7 @@ private:
std
::
wstring
m_name
;
std
::
string
m_date
;
std
::
string
m_id
;
std
::
string
m_rawData
;
public:
CCertificateInfo
()
...
...
@@ -81,6 +82,15 @@ public:
{
m_id
=
id
;
}
std
::
string
GetRawBase64
()
{
return
m_rawData
;
}
void
SetRawBase64
(
const
std
::
string
&
data
)
{
m_rawData
=
data
;
}
};
class
Q_DECL_EXPORT
ICertificate
...
...
DesktopEditor/xmlsec/src/src/XmlCertificate.cpp
View file @
48587f55
...
...
@@ -58,6 +58,7 @@ CCertificateInfo ICertificate::GetInfo()
info
.
SetName
(
GetSignerName
());
info
.
SetDate
(
GetDate
());
info
.
SetId
(
GetId
());
info
.
SetRawBase64
(
GetCertificateBase64
());
return
info
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment