Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
TSBBuiltInRSACryptoKeyFormat = short;
const short rsaPKCS1 = 0;
const short rsaOAEP = 1;
const short rsaPSS = 2;
[VB.NET]
TSBBuiltInRSACryptoKeyFormat As Short
Const rsaPKCS1 As Short = 0
Const rsaOAEP As Short = 1
Const rsaPSS As Short = 2
[Pascal]
under development
[C++]
typedef uint8_t TSBBuiltInRSACryptoKeyFormatRaw;
typedef enum { rsaPKCS1 = 0, rsaOAEP = 1, rsaPSS = 2 } TSBBuiltInRSACryptoKeyFormat;
[PHP]
class TSBBuiltInRSACryptoKeyFormat extends TSBBaseEnum {
const rsaPKCS1 = 0;
const rsaOAEP = 1;
const rsaPSS = 2;
}
[Java]
public enum TSBBuiltInRSACryptoKeyFormat { rsaPKCS1, rsaOAEP, rsaPSS }
Possible values
Declared in
.NET:
- Namespace: SBCryptoProvBuiltInPKI
- Assembly: SecureBlackbox...
VCL:
- Unit: SBCryptoProvBuiltInPKI
Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum