Discuss this help topic in SecureBlackbox Forum
This topic is under development…
Declaration
[C#]
public enum TSBRSAKeyFormat { rsaPKCS1 = 0, rsaOAEP = 1, rsaPSS = 2, rsaX509 = 3 };
[VB.NET]
Enum TSBRSAKeyFormat
rsaPKCS1 = 0
rsaOAEP = 1
rsaPSS = 2
rsaX509 = 3
End Enum
[Pascal]
TSBRSAKeyFormat = (rsaPKCS1, rsaOAEP, rsaPSS, rsaX509);
[C++]
typedef uint8_t TSBRSAKeyFormatRaw;
typedef enum { _rsaPKCS1 = 0, _rsaOAEP = 1, _rsaPSS = 2, rsaX509 = 3 } TSBRSAKeyFormat;
[PHP]
class TSBRSAKeyFormat extends TSBBaseEnum {
const rsaPKCS1 = 0;
const rsaOAEP = 1;
const rsaPSS = 2;
const rsaX509 = 3;
}
[Java]
public enum TSBRSAKeyFormat { rsaPKCS1, rsaOAEP, rsaPSS, rsaX509 }
Possible values
Declared in
.NET:
- Namespace: SBPublicKeyCrypto
- Assembly: SecureBlackbox
VCL:Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum