-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #236 from 3MFConsortium/release/2.1.0
release/2.1.0
- Loading branch information
Showing
373 changed files
with
13,430 additions
and
1,235 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
[submodule "Tests/googletest"] | ||
path = Tests/googletest | ||
url = https://github.com/google/googletest.git | ||
[submodule "Tests/libressl"] | ||
path = Tests/libressl | ||
url = https://github.com/3MFConsortium/forks-libressl-distribution.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/bin/sh | ||
|
||
cd lib3mf-repo | ||
sh cmake/GenerateMake.sh | ||
sh cmake/GenerateMakeFast.sh | ||
cd build | ||
make -j2 | ||
make -j1 | ||
ctest -V . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
|
||
CAccessRight | ||
==================================================================================================== | ||
|
||
|
||
.. cpp:class:: Lib3MF::CAccessRight : public CBase | ||
|
||
|
||
|
||
|
||
|
||
.. cpp:function:: PConsumer GetConsumer() | ||
|
||
Gets the consumer associated with this access right | ||
|
||
:returns: The consumer instance | ||
|
||
|
||
.. cpp:function:: eWrappingAlgorithm GetWrappingAlgorithm() | ||
|
||
Gets the associated encryption algorithm | ||
|
||
:returns: The algorithm used for the key in this accessright | ||
|
||
|
||
.. cpp:function:: eMgfAlgorithm GetMgfAlgorithm() | ||
|
||
Gets the associated mask generation function algorithm | ||
|
||
:returns: The MFG1 algorithm | ||
|
||
|
||
.. cpp:function:: eDigestMethod GetDigestMethod() | ||
|
||
Gets the digest method assoicated | ||
|
||
:returns: The digest method for this accessright | ||
|
||
|
||
.. cpp:type:: std::shared_ptr<CAccessRight> Lib3MF::PAccessRight | ||
|
||
Shared pointer to CAccessRight to easily allow reference counting. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.