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 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587
|
/*
* XML Security Library (http://www.aleksey.com/xmlsec).
*
* This is free software; see Copyright file in the source
* distribution for preciese wording.
*
* Copyright (C) 2003 Cordys R&D BV, All rights reserved.
*/
#ifndef __XMLSEC_MSCRYPTO_CRYPTO_H__
#define __XMLSEC_MSCRYPTO_CRYPTO_H__
#include <xmlsec/exports.h>
#include <xmlsec/xmlsec.h>
#include <xmlsec/keys.h>
#include <xmlsec/transforms.h>
#include <xmlsec/dl.h>
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
XMLSEC_CRYPTO_EXPORT xmlSecCryptoDLFunctionsPtr xmlSecCryptoGetFunctions_mscrypto(void);
/********************************************************************
*
* Init shutdown
*
********************************************************************/
XMLSEC_CRYPTO_EXPORT int xmlSecMSCryptoInit (void);
XMLSEC_CRYPTO_EXPORT int xmlSecMSCryptoShutdown (void);
XMLSEC_CRYPTO_EXPORT int xmlSecMSCryptoKeysMngrInit (xmlSecKeysMngrPtr mngr);
XMLSEC_CRYPTO_EXPORT int xmlSecMSCryptoGenerateRandom (xmlSecBufferPtr buffer,
xmlSecSize size);
XMLSEC_CRYPTO_EXPORT void xmlSecMSCryptoErrorsDefaultCallback(const char* file,
int line,
const char* func,
const char* errorObject,
const char* errorSubject,
int reason,
const char* msg);
/********************************************************************
*
* DSA transform
*
*******************************************************************/
#ifndef XMLSEC_NO_DSA
/**
* xmlSecMSCryptoKeyDataDsaId:
*
* The DSA key klass.
*/
#define xmlSecMSCryptoKeyDataDsaId \
xmlSecMSCryptoKeyDataDsaGetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecKeyDataId xmlSecMSCryptoKeyDataDsaGetKlass (void);
/**
* xmlSecMSCryptoTransformDsaSha1Id:
*
* The DSA SHA1 signature transform klass.
*/
#define xmlSecMSCryptoTransformDsaSha1Id \
xmlSecMSCryptoTransformDsaSha1GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformDsaSha1GetKlass(void);
#endif /* XMLSEC_NO_DSA */
/********************************************************************
*
* GOST2001 transform
*
*******************************************************************/
#ifndef XMLSEC_NO_GOST
/**
* xmlSecMSCryptoKeyDataGost2001Id:
*
* The GOST2001 key klass.
*/
#define xmlSecMSCryptoKeyDataGost2001Id \
xmlSecMSCryptoKeyDataGost2001GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecKeyDataId xmlSecMSCryptoKeyDataGost2001GetKlass (void);
/**
* xmlSecMSCryptoTransformGost2001GostR3411_94Id:
*
* The GOST2001 GOSTR3411_94 signature transform klass.
*/
#define xmlSecMSCryptoTransformGost2001GostR3411_94Id \
xmlSecMSCryptoTransformGost2001GostR3411_94GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformGost2001GostR3411_94GetKlass(void);
#endif /* XMLSEC_NO_GOST */
#ifndef XMLSEC_NO_GOST2012
/********************************************************************
*
* GOST R 34.10-2012 transform
*
*******************************************************************/
/**
* xmlSecMSCryptoKeyDataGost2012_256Id:
*
* The GOST R 34.10-2012 256 key klass
*/
#define xmlSecMSCryptoKeyDataGost2012_256Id \
xmlSecMSCryptoKeyDataGost2012_256GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecKeyDataId xmlSecMSCryptoKeyDataGost2012_256GetKlass (void);
/**
* xmlSecMSCryptoKeyDataGost2012_512Id:
*
* The GOST R 34.10-2012 512 key klass
*/
#define xmlSecMSCryptoKeyDataGost2012_512Id \
xmlSecMSCryptoKeyDataGost2012_512GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecKeyDataId xmlSecMSCryptoKeyDataGost2012_512GetKlass (void);
/**
* xmlSecMSCryptoTransformGost2012_256Id:
*
* The GOST R 34.10-2012 - GOST R 3411-2012 256 bit signature transform klass.
*/
#define xmlSecMSCryptoTransformGost2012_256Id \
xmlSecMSCryptoTransformGost2012_256GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformGost2012_256GetKlass(void);
/**
* xmlSecMSCryptoTransformGost2012_512Id:
*
* The GOST R 34.10-2012 - GOST R 3411-2012 512 bit signature transform klass.
*/
#define xmlSecMSCryptoTransformGost2012_512Id \
xmlSecMSCryptoTransformGost2012_512GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformGost2012_512GetKlass(void);
#endif /* XMLSEC_NO_GOST2012 */
/********************************************************************
*
* RSA transforms
*
*******************************************************************/
#ifndef XMLSEC_NO_RSA
/**
* xmlSecMSCryptoKeyDataRsaId:
*
* The RSA key klass.
*/
#define xmlSecMSCryptoKeyDataRsaId \
xmlSecMSCryptoKeyDataRsaGetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecKeyDataId xmlSecMSCryptoKeyDataRsaGetKlass(void);
#ifndef XMLSEC_NO_MD5
/**
* xmlSecMSCryptoTransformRsaMd5Id:
*
* The RSA-MD5 signature transform klass.
*/
#define xmlSecMSCryptoTransformRsaMd5Id \
xmlSecMSCryptoTransformRsaMd5GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformRsaMd5GetKlass(void);
#endif /* XMLSEC_NO_MD5 */
#ifndef XMLSEC_NO_SHA1
/**
* xmlSecMSCryptoTransformRsaSha1Id:
*
* The RSA-SHA1 signature transform klass.
*/
#define xmlSecMSCryptoTransformRsaSha1Id \
xmlSecMSCryptoTransformRsaSha1GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformRsaSha1GetKlass(void);
#endif /* XMLSEC_NO_SHA1 */
#ifndef XMLSEC_NO_SHA256
/**
* xmlSecMSCryptoTransformRsaSha256Id:
*
* The RSA-SHA2-256 signature transform klass.
*/
#define xmlSecMSCryptoTransformRsaSha256Id \
xmlSecMSCryptoTransformRsaSha256GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformRsaSha256GetKlass(void);
#endif /* XMLSEC_NO_SHA256 */
#ifndef XMLSEC_NO_SHA384
/**
* xmlSecMSCryptoTransformRsaSha384Id:
*
* The RSA-SHA2-384 signature transform klass.
*/
#define xmlSecMSCryptoTransformRsaSha384Id \
xmlSecMSCryptoTransformRsaSha384GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformRsaSha384GetKlass(void);
#endif /* XMLSEC_NO_SHA384 */
#ifndef XMLSEC_NO_SHA512
/**
* xmlSecMSCryptoTransformRsaSha512Id:
*
* The RSA-SHA2-512 signature transform klass.
*/
#define xmlSecMSCryptoTransformRsaSha512Id \
xmlSecMSCryptoTransformRsaSha512GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformRsaSha512GetKlass(void);
#endif /* XMLSEC_NO_SHA512 */
#ifndef XMLSEC_NO_RSA_PKCS15
/**
* xmlSecMSCryptoTransformRsaPkcs1Id:
*
* The RSA PKCS1 key transport transform klass.
*/
#define xmlSecMSCryptoTransformRsaPkcs1Id \
xmlSecMSCryptoTransformRsaPkcs1GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformRsaPkcs1GetKlass(void);
#endif /* XMLSEC_NO_RSA_PKCS15 */
#ifndef XMLSEC_NO_RSA_OAEP
/**
* xmlSecMSCryptoTransformRsaOaepId:
*
* The RSA OAEP key transport transform klass. MSCrypto only supports SHA1 for digest and MGF1.
*/
#define xmlSecMSCryptoTransformRsaOaepId \
xmlSecMSCryptoTransformRsaOaepGetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformRsaOaepGetKlass(void);
#endif /* XMLSEC_NO_RSA_OAEP */
#endif /* XMLSEC_NO_RSA */
/********************************************************************
*
* Md5 transforms
*
*******************************************************************/
#ifndef XMLSEC_NO_MD5
/**
* xmlSecMSCryptoTransformMd5Id:
*
* The MD5 digest transform klass.
*/
#define xmlSecMSCryptoTransformMd5Id \
xmlSecMSCryptoTransformMd5GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformMd5GetKlass(void);
#endif /* XMLSEC_NO_MD5 */
/********************************************************************
*
* SHA1 transform
*
*******************************************************************/
#ifndef XMLSEC_NO_SHA1
/**
* xmlSecMSCryptoTransformSha1Id:
*
* The SHA1 digest transform klass.
*/
#define xmlSecMSCryptoTransformSha1Id \
xmlSecMSCryptoTransformSha1GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformSha1GetKlass(void);
#endif /* XMLSEC_NO_SHA1 */
/********************************************************************
*
* SHA256 transform
*
*******************************************************************/
#ifndef XMLSEC_NO_SHA256
/**
* xmlSecMSCryptoTransformSha256Id:
*
* The SHA2-256 digest transform klass.
*/
#define xmlSecMSCryptoTransformSha256Id \
xmlSecMSCryptoTransformSha256GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformSha256GetKlass(void);
#endif /* XMLSEC_NO_SHA256 */
/********************************************************************
*
* SHA384 transform
*
*******************************************************************/
#ifndef XMLSEC_NO_SHA384
/**
* xmlSecMSCryptoTransformSha384Id:
*
* The SHA2-384 digest transform klass.
*/
#define xmlSecMSCryptoTransformSha384Id \
xmlSecMSCryptoTransformSha384GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformSha384GetKlass(void);
#endif /* XMLSEC_NO_SHA384 */
/********************************************************************
*
* SHA512 transform
*
*******************************************************************/
#ifndef XMLSEC_NO_SHA512
/**
* xmlSecMSCryptoTransformSha512Id:
*
* The SHA2-512 digest transform klass.
*/
#define xmlSecMSCryptoTransformSha512Id \
xmlSecMSCryptoTransformSha512GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformSha512GetKlass(void);
#endif /* XMLSEC_NO_SHA512 */
/********************************************************************
*
* GOSTR3411_94 transform
*
*******************************************************************/
#ifndef XMLSEC_NO_GOST
/**
* xmlSecMSCryptoTransformGostR3411_94Id:
*
* The GOSTR3411_94 digest transform klass.
*/
#define xmlSecMSCryptoTransformGostR3411_94Id \
xmlSecMSCryptoTransformGostR3411_94GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformGostR3411_94GetKlass(void);
#endif /* XMLSEC_NO_GOST */
#ifndef XMLSEC_NO_GOST2012
/********************************************************************
*
* GOST R 34.10-2012 256 and 512-bit digests
*
*******************************************************************/
/**
* xmlSecMSCryptoTransformGostR3411_2012_256Id:
*
* The GOST R 34.11-2012 256 digest transform klass.
*/
#define xmlSecMSCryptoTransformGostR3411_2012_256Id \
xmlSecMSCryptoTransformGostR3411_2012_256GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformGostR3411_2012_256GetKlass(void);
/**
* xmlSecMSCryptoTransformGostR3411_2012_512Id:
*
* The GOST R 34.11-2012 512 digest transform klass.
*/
#define xmlSecMSCryptoTransformGostR3411_2012_512Id \
xmlSecMSCryptoTransformGostR3411_2012_512GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformGostR3411_2012_512GetKlass(void);
#endif /* XMLSEC_NO_GOST2012 */
/********************************************************************
*
* AES transforms
*
*******************************************************************/
#ifndef XMLSEC_NO_AES
/**
* xmlSecMSCryptoKeyDataAesId:
*
* The AES key data klass.
*/
#define xmlSecMSCryptoKeyDataAesId \
xmlSecMSCryptoKeyDataAesGetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecKeyDataId xmlSecMSCryptoKeyDataAesGetKlass(void);
XMLSEC_CRYPTO_EXPORT int xmlSecMSCryptoKeyDataAesSet (xmlSecKeyDataPtr data,
const xmlSecByte* buf,
xmlSecSize bufSize);
/**
* xmlSecMSCryptoTransformAes128CbcId:
*
* The AES128 CBC cipher transform klass.
*/
#define xmlSecMSCryptoTransformAes128CbcId \
xmlSecMSCryptoTransformAes128CbcGetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformAes128CbcGetKlass(void);
/**
* xmlSecMSCryptoTransformAes192CbcId:
*
* The AES192 CBC cipher transform klass.
*/
#define xmlSecMSCryptoTransformAes192CbcId \
xmlSecMSCryptoTransformAes192CbcGetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformAes192CbcGetKlass(void);
/**
* xmlSecMSCryptoTransformAes256CbcId:
*
* The AES256 CBC cipher transform klass.
*/
#define xmlSecMSCryptoTransformAes256CbcId \
xmlSecMSCryptoTransformAes256CbcGetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformAes256CbcGetKlass(void);
/**
* xmlSecMSCryptoTransformKWAes128Id:
*
* The AES 128 key wrap transform klass.
*/
#define xmlSecMSCryptoTransformKWAes128Id \
xmlSecMSCryptoTransformKWAes128GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformKWAes128GetKlass(void);
/**
* xmlSecMSCryptoTransformKWAes192Id:
*
* The AES 192 key wrap transform klass.
*/
#define xmlSecMSCryptoTransformKWAes192Id \
xmlSecMSCryptoTransformKWAes192GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformKWAes192GetKlass(void);
/**
* xmlSecMSCryptoTransformKWAes256Id:
*
* The AES 256 key wrap transform klass.
*/
#define xmlSecMSCryptoTransformKWAes256Id \
xmlSecMSCryptoTransformKWAes256GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformKWAes256GetKlass(void);
#endif /* XMLSEC_NO_AES */
/********************************************************************
*
* DES transform
*
*******************************************************************/
#ifndef XMLSEC_NO_DES
/**
* xmlSecMSCryptoKeyDataDesId:
*
* The DES key data klass.
*/
#define xmlSecMSCryptoKeyDataDesId \
xmlSecMSCryptoKeyDataDesGetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecKeyDataId xmlSecMSCryptoKeyDataDesGetKlass(void);
/**
* xmlSecMSCryptoTransformDes3CbcId:
*
* The DES3 CBC cipher transform klass.
*/
#define xmlSecMSCryptoTransformDes3CbcId \
xmlSecMSCryptoTransformDes3CbcGetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformDes3CbcGetKlass(void);
/**
* xmlSecMSCryptoTransformKWDes3Id:
*
* The DES3 KW transform klass.
*/
#define xmlSecMSCryptoTransformKWDes3Id \
xmlSecMSCryptoTransformKWDes3GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformKWDes3GetKlass(void);
#endif /* XMLSEC_NO_DES */
/********************************************************************
*
* HMAC transforms
*
*******************************************************************/
#ifndef XMLSEC_NO_HMAC
/**
* xmlSecMSCryptoKeyDataHmacId:
*
* The HMAC key klass.
*/
#define xmlSecMSCryptoKeyDataHmacId \
xmlSecMSCryptoKeyDataHmacGetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecKeyDataId xmlSecMSCryptoKeyDataHmacGetKlass(void);
XMLSEC_CRYPTO_EXPORT int xmlSecMSCryptoKeyDataHmacSet (xmlSecKeyDataPtr data,
const xmlSecByte* buf,
xmlSecSize bufSize);
#ifndef XMLSEC_NO_MD5
/**
* xmlSecMSCryptoTransformHmacMd5Id:
*
* The HMAC with MD5 signature transform klass.
*/
#define xmlSecMSCryptoTransformHmacMd5Id \
xmlSecMSCryptoTransformHmacMd5GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformHmacMd5GetKlass(void);
#endif /* XMLSEC_NO_MD5 */
#ifndef XMLSEC_NO_RIPEMD160
/**
* xmlSecMSCryptoTransformHmacRipemd160Id:
*
* The HMAC with RipeMD160 signature transform klass.
*/
#define xmlSecMSCryptoTransformHmacRipemd160Id \
xmlSecMSCryptoTransformHmacRipemd160GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformHmacRipemd160GetKlass(void);
#endif /* XMLSEC_NO_RIPEMD160 */
#ifndef XMLSEC_NO_SHA1
/**
* xmlSecMSCryptoTransformHmacSha1Id:
*
* The HMAC with SHA1 signature transform klass.
*/
#define xmlSecMSCryptoTransformHmacSha1Id \
xmlSecMSCryptoTransformHmacSha1GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformHmacSha1GetKlass(void);
#endif /* XMLSEC_NO_SHA1 */
#ifndef XMLSEC_NO_SHA224
/**
* xmlSecMSCryptoTransformHmacSha224Id:
*
* The HMAC with SHA2-224 signature transform klass.
*/
#define xmlSecMSCryptoTransformHmacSha224Id \
xmlSecMSCryptoTransformHmacSha224GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformHmacSha224GetKlass(void);
#endif /* XMLSEC_NO_SHA224 */
#ifndef XMLSEC_NO_SHA256
/**
* xmlSecMSCryptoTransformHmacSha256Id:
*
* The HMAC with SHA2-256 signature transform klass.
*/
#define xmlSecMSCryptoTransformHmacSha256Id \
xmlSecMSCryptoTransformHmacSha256GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformHmacSha256GetKlass(void);
#endif /* XMLSEC_NO_SHA256 */
#ifndef XMLSEC_NO_SHA384
/**
* xmlSecMSCryptoTransformHmacSha384Id:
*
* The HMAC with SHA2-384 signature transform klass.
*/
#define xmlSecMSCryptoTransformHmacSha384Id \
xmlSecMSCryptoTransformHmacSha384GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformHmacSha384GetKlass(void);
#endif /* XMLSEC_NO_SHA384 */
#ifndef XMLSEC_NO_SHA512
/**
* xmlSecMSCryptoTransformHmacSha512Id:
*
* The HMAC with SHA2-512 signature transform klass.
*/
#define xmlSecMSCryptoTransformHmacSha512Id \
xmlSecMSCryptoTransformHmacSha512GetKlass()
XMLSEC_CRYPTO_EXPORT xmlSecTransformId xmlSecMSCryptoTransformHmacSha512GetKlass(void);
#endif /* XMLSEC_NO_SHA512 */
#endif /* XMLSEC_NO_HMAC */
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __XMLSEC_MSCRYPTO_CRYPTO_H__ */
#define __XMLSEC_MSCRYPTO_CRYPTO_H__
|