aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/credentials/credentials_manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/credentials/credentials_manager.h')
-rw-r--r--src/lib/credentials/credentials_manager.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/lib/credentials/credentials_manager.h b/src/lib/credentials/credentials_manager.h
index af0021393..96e840d13 100644
--- a/src/lib/credentials/credentials_manager.h
+++ b/src/lib/credentials/credentials_manager.h
@@ -21,7 +21,7 @@ class BigInt;
* Interface for a credentials manager.
*
* A type is a fairly static value that represents the general nature
-* of the transaction occuring. Currently used values are "tls-client"
+* of the transaction occurring. Currently used values are "tls-client"
* and "tls-server". Context represents a hostname, email address,
* username, or other identifier.
*/
@@ -34,7 +34,7 @@ class BOTAN_DLL Credentials_Manager
* Return a list of the certificates of CAs that we trust in this
* type/context.
*
- * @param type specifies the type of operation occuring
+ * @param type specifies the type of operation occurring
*
* @param context specifies a context relative to type. For instance
* for type "tls-client", context specifies the servers name.
@@ -52,7 +52,7 @@ class BOTAN_DLL Credentials_Manager
* std::exception with an informative what() result if the
* certificate chain cannot be verified.
- * @param type specifies the type of operation occuring
+ * @param type specifies the type of operation occurring
* @param hostname specifies the purported hostname
* @param cert_chain specifies a certificate chain leading to a
* trusted root CA certificate.
@@ -73,7 +73,7 @@ class BOTAN_DLL Credentials_Manager
* "DSA", "ECDSA", etc), or empty if there
* is no preference by the caller.
*
- * @param type specifies the type of operation occuring
+ * @param type specifies the type of operation occurring
*
* @param context specifies a context relative to type.
*/
@@ -92,7 +92,7 @@ class BOTAN_DLL Credentials_Manager
* @param cert_key_type specifies the type of key requested
* ("RSA", "DSA", "ECDSA", etc)
*
- * @param type specifies the type of operation occuring
+ * @param type specifies the type of operation occurring
*
* @param context specifies a context relative to type.
*/
@@ -112,7 +112,7 @@ class BOTAN_DLL Credentials_Manager
const std::string& context);
/**
- * @param type specifies the type of operation occuring
+ * @param type specifies the type of operation occurring
* @param context specifies a context relative to type.
* @return true if we should attempt SRP authentication
*/
@@ -120,7 +120,7 @@ class BOTAN_DLL Credentials_Manager
const std::string& context);
/**
- * @param type specifies the type of operation occuring
+ * @param type specifies the type of operation occurring
* @param context specifies a context relative to type.
* @return identifier for client-side SRP auth, if available
for this type/context. Should return empty string
@@ -130,7 +130,7 @@ class BOTAN_DLL Credentials_Manager
const std::string& context);
/**
- * @param type specifies the type of operation occuring
+ * @param type specifies the type of operation occurring
* @param context specifies a context relative to type.
* @param identifier specifies what identifier we want the
* password for. This will be a value previously returned
@@ -154,7 +154,7 @@ class BOTAN_DLL Credentials_Manager
bool generate_fake_on_unknown);
/**
- * @param type specifies the type of operation occuring
+ * @param type specifies the type of operation occurring
* @param context specifies a context relative to type.
* @return the PSK identity hint for this type/context
*/
@@ -162,7 +162,7 @@ class BOTAN_DLL Credentials_Manager
const std::string& context);
/**
- * @param type specifies the type of operation occuring
+ * @param type specifies the type of operation occurring
* @param context specifies a context relative to type.
* @param identity_hint was passed by the server (but may be empty)
* @return the PSK identity we want to use
@@ -172,7 +172,7 @@ class BOTAN_DLL Credentials_Manager
const std::string& identity_hint);
/**
- * @param type specifies the type of operation occuring
+ * @param type specifies the type of operation occurring
* @param context specifies a context relative to type.
* @param identity is a PSK identity previously returned by
psk_identity for the same type and context.