Index: /trunk/include/iprt/crypto/pkix.h
===================================================================
--- /trunk/include/iprt/crypto/pkix.h	(revision 84250)
+++ /trunk/include/iprt/crypto/pkix.h	(revision 84251)
@@ -158,4 +158,6 @@
 #define RTCR_PKCS1_SHA512_WITH_RSA_OID              "1.2.840.113549.1.1.13"
 #define RTCR_PKCS1_SHA224_WITH_RSA_OID              "1.2.840.113549.1.1.14"
+#define RTCR_PKCS1_SHA512T224_WITH_RSA_OID          "1.2.840.113549.1.1.15"
+#define RTCR_PKCS1_SHA512T256_WITH_RSA_OID          "1.2.840.113549.1.1.16"
 /** @}  */
 
Index: /trunk/src/VBox/Runtime/common/crypto/digest-builtin.cpp
===================================================================
--- /trunk/src/VBox/Runtime/common/crypto/digest-builtin.cpp	(revision 84250)
+++ /trunk/src/VBox/Runtime/common/crypto/digest-builtin.cpp	(revision 84251)
@@ -519,4 +519,5 @@
 static const char * const g_apszSha512t224Aliases[] =
 {
+    RTCR_PKCS1_SHA512T224_WITH_RSA_OID,
     NULL
 };
@@ -574,4 +575,5 @@
 static const char * const g_apszSha512t256Aliases[] =
 {
+    RTCR_PKCS1_SHA512T256_WITH_RSA_OID,
     NULL
 };
Index: /trunk/src/VBox/Runtime/common/crypto/pkix-signature-rsa.cpp
===================================================================
--- /trunk/src/VBox/Runtime/common/crypto/pkix-signature-rsa.cpp	(revision 84250)
+++ /trunk/src/VBox/Runtime/common/crypto/pkix-signature-rsa.cpp	(revision 84251)
@@ -447,4 +447,6 @@
     RTCR_PKCS1_SHA512_WITH_RSA_OID,
     RTCR_PKCS1_SHA224_WITH_RSA_OID,
+    RTCR_PKCS1_SHA512T224_WITH_RSA_OID,
+    RTCR_PKCS1_SHA512T256_WITH_RSA_OID,
     /* Note: Note quite sure about these OIW oddballs. */
     "1.3.14.3.2.11" /* OIW rsaSignature */,
