-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(xmlsec-core) Added XMLSEC_TRANSFORM_FLAGS_USER_SPECIFIED flag to the…
… xmlSecTransform; fixed typos
- Loading branch information
Showing
8 changed files
with
35 additions
and
20 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
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
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 |
---|---|---|
|
@@ -8,8 +8,8 @@ | |
* | ||
* Copyright (C) 2002-2024 Aleksey Sanin <[email protected]>. All Rights Reserved. | ||
*/ | ||
#ifndef __XMLSEC_TRASNFORMS_HELPERS_H__ | ||
#define __XMLSEC_TRASNFORMS_HELPERS_H__ | ||
#ifndef __XMLSEC_TRANSFORMS_HELPERS_H__ | ||
#define __XMLSEC_TRANSFORMS_HELPERS_H__ | ||
|
||
|
||
#ifndef XMLSEC_PRIVATE | ||
|
@@ -73,9 +73,9 @@ XMLSEC_EXPORT int xmlSecTransformConcatKdfParamsGetFixedInfo (xmlSecTransform | |
#ifndef XMLSEC_NO_HMAC | ||
|
||
/* max HMAC output size in bytes */ | ||
#define XMLSEC_TRASNFORM_HMAC_MAX_OUTPUT_SIZE 128U | ||
#define XMLSEC_TRANSFORM_HMAC_MAX_OUTPUT_SIZE 128U | ||
|
||
#define XMLSEC_TRASNFORM_HMAC_BITS_TO_BYTES(bits) (((bits) + 7) / 8) | ||
#define XMLSEC_TRANSFORM_HMAC_BITS_TO_BYTES(bits) (((bits) + 7) / 8) | ||
|
||
XMLSEC_EXPORT int xmlSecTransformHmacReadOutputBitsSize (xmlNodePtr node, | ||
xmlSecSize defaultSize, | ||
|
@@ -131,4 +131,4 @@ XMLSEC_EXPORT int xmlSecTransformRsaOaepParamsRead (xmlSecTransformRsaO | |
|
||
#endif /* XMLSEC_NO_RSA */ | ||
|
||
#endif /* __XMLSEC_TRASNFORMS_HELPERS_H__ */ | ||
#endif /* __XMLSEC_TRANSFORMS_HELPERS_H__ */ |
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