aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-08-10 13:44:19 +0000
committerlloyd <[email protected]>2010-08-10 13:44:19 +0000
commit3935796d1b85d9ba3be9d0526fd35f25831e3cbb (patch)
treea6abfe47be83d6c65f25f365a577dcdde7f3c07c /src
parent98264c3142e83d47a7e44a619c48e46a518b2f2d (diff)
Typo fixes
Diffstat (limited to 'src')
-rw-r--r--src/wrap/python/rsa.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wrap/python/rsa.cpp b/src/wrap/python/rsa.cpp
index 2aa30efd7..cbccf96e8 100644
--- a/src/wrap/python/rsa.cpp
+++ b/src/wrap/python/rsa.cpp
@@ -40,7 +40,7 @@ class Py_RSA_PrivateKey
{
SecureVector<byte> bits = PKCS8::BER_encode(*rsa_key);
- return std;:string(reinterpret_cast<const char*>(&bits[0]),
+ return std::string(reinterpret_cast<const char*>(&bits[0]),
bits.size());
}
@@ -125,7 +125,7 @@ class Py_RSA_PublicKey
{
SecureVector<byte> bits = X509::BER_encode(*rsa_key);
- return std;:string(reinterpret_cast<const char*>(&bits[0]),
+ return std::string(reinterpret_cast<const char*>(&bits[0]),
bits.size());
}